reverse sitemap order

This commit is contained in:
2023-11-21 22:42:11 +10:30
parent 7bfb23e575
commit ec0d0f2985

View File

@ -12,7 +12,7 @@ title: sitemap
[infinite nightmare list of things i want to draw](/infinite_nightmare/)
{% for tag in collections.tagsList %}
[{{tag}}]({{"/" + tag + "/"}})
{% for post in collections[tag] %}
{% for post in collections[tag] | reverse %}
\- [{{ post.data.title or post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
{% endfor %}
{% endfor %}