mess with sitemap

This commit is contained in:
2023-05-01 16:44:40 +09:30
parent 52c75b127e
commit 9d0c5f3eef
4 changed files with 12 additions and 5 deletions

18
src/sitemap.md Normal file
View File

@ -0,0 +1,18 @@
---
layout: layout/base.njk
title: sitemap
---
<div class="pages-article">
[home](/)
[sitemap](/sitemap/) \<-- you are here babey!!
[links](/links/)
[credits](/credits/)
[journal.html](/journal_html/)
{% for tag in collections.tagsList %}
[{{tag}}]({{"/" + tag + "/"}})
{% for post in collections[tag] %}
\- [{{ post.data.title or post.data.page.fileSlug }}](/{{ tag }}/{{ post.data.page.fileSlug }})
{% endfor %}
{% endfor %}
</div>