I was trying to create a new blog using the Hyde-Hyde theme and couldn’t get the post links to appear on the homepage and ‘posts’ page in date-order (newest first). I tried several changes to different partials but wasn’t able to resolve the issue.
That’s setting your paginator, and then range through it. You probably want:
{{ range $paginator.Pages.ByDate.Reverse }}
Note it is using the default sort order for content, and the Sep. post is weighted while the other posts are not. That can affect the listings, as well.
@maiki if you post the answer on the Stack Overflow link I’ll accept it and designate it for the bounty (in case you care about SO points). Otherwise I’ll post the answer there myself tomorrow just so there’s a record there of the answer as well. Thanks again.