How do I use the middleman blog pagination for a specific blog in a multiblog middleman setup?
Currently I use:
blog(category).articles[page_start .. page_end].each_with_index do |current_article,i|
To loop thru specific articles, with category a variable thru proxy in config.rb. I found out that the pagination locals use a different context than above loop and loop over the first blog in config.rb likepage_articles
do.
Thx.