calintat / minimal

Personal blog theme powered by Hugo
https://themes.gohugo.io/minimal/
MIT License
404 stars 222 forks source link

Change order of blog post/projects #44

Closed scottcwebdev closed 6 years ago

scottcwebdev commented 6 years ago

Hello,

How would I change the order that the blog posts/projects show up on the list pages?

For example, if the order is:

Project #3 Project #2 Project #1

and I want to change it to...

Project #1 Project #2 Project #3

jamestharpe commented 6 years ago

Copy the list.html file from themes/minimal/layouts/_default to layouts/_default then add .Reverse to the range call:

{{ range (.Paginator 5).Pages.Reverse }} {{ partial "list-item" . }} {{ end }}
calintat commented 6 years ago

You can also change the ordering by specifying a weight in the front matter of a post/project.

scottcwebdev commented 6 years ago

Thank you so much! Awesome layout btw