19 lines
526 B
Markdown
19 lines
526 B
Markdown
---
|
|
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/)
|
|
[infinite nightmare list of things i want to draw](/infinite_nightmare/)
|
|
{% 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> |