panr / hugo-theme-terminal

A simple, retro theme for Hugo
MIT License
1.96k stars 737 forks source link

How to sort posts by numbers, dates, or alphabetically? #455

Closed jackcrane closed 2 weeks ago

jackcrane commented 1 year ago

I have my pages organized by chapter numbers, some exemplified below

8.4.1: Some words
[...]
9.5.2: Some more words
[...]
10.1.0: Another words

They should be in that order, but instead 10.1.0 gets sorted before anything else. Is there some way to EITHER organize by numbers OR provide a "rank" in frontmatter that it gets sorted by?

Thunder33345 commented 1 year ago

You can manually configure reorder of a post in the frontmatter using "weight" parameter, unfortunately i dont think there's another way apart from manually assign weight for each post.

This is not a theme feature, so see Hugo docs on frontmatter

weight used for ordering your content in lists. Lower weight gets higher precedence. So content with lower weight will come first. If set, weights should be non-zero, as 0 is interpreted as an unset weight.