Hi, I was wondering how does one custom sort a blog in middleman while still using the pages. I can use a custom sort on blog.articles, but this wont change the page_articles locale. Is there a clean way to do that?
Right now I have to replace page_articles with blog.articles.sort_by {|article| CUSTOM SORT HERE }[page_start-1…page_end-1]
Which is a bit ugly. Any idea?