Files
11ty_neocities/src/pages.md

11 lines
228 B
Markdown
Raw Normal View History

---
layout: layout/base.njk
title: pages
---
{% for tag in collections.tagsList %}
{{tag}}
{% for post in collections[tag] %}
\- [{{ post.data.title }}](/{{ tag }}/{{ post.data.page.fileSlug }})
{% endfor %}
{% endfor %}