Does ready method have access to blog.options?

I’d like to get to blog.per_page and blog.page_link from the method I’m defining for the ready event. But blog isn’t in scope there and besides sitemap, I don’t know what is.

Can I get to that info from sitemap ? Or is there another way to access the options?

thanks.

I worked it out…

 sitemap.app.extensions[:blog].values.first.options

(adequate for my case where I know there’s only one blog.)