diff options
author | Franck Cuny <franck@fcuny.net> | 2021-08-24 19:21:23 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-08-24 19:25:57 -0700 |
commit | 23a9bbb216ae9618431e96e6b13d567f79383002 (patch) | |
tree | ebf427c8b293b61446056cadd36c25a8ddd9d813 /users/fcuny | |
parent | build: sleep before tagging (diff) | |
download | world-23a9bbb216ae9618431e96e6b13d567f79383002.tar.gz |
blog: sort pages in reverse order
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/layouts/partials/postlist.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/notes/layouts/partials/postlist.html b/users/fcuny/notes/layouts/partials/postlist.html index e124482..3d5cf04 100644 --- a/users/fcuny/notes/layouts/partials/postlist.html +++ b/users/fcuny/notes/layouts/partials/postlist.html @@ -1,7 +1,7 @@ {{ range .GroupByDate "2006" }} <h2>{{ .Key }}</h2> <ul> - {{ range .Pages.ByDate }} + {{ range .Pages.ByDate.Reverse }} <li> <div> <a href="{{ .Permalink }}">{{ .Title }}</a> |