Files
11ty_neocities/src/lists.md

9 lines
264 B
Markdown
Raw Normal View History

2023-03-03 16:47:51 +10:30
---
title: lists
layout: layout/base.njk
eleventyImport.collections: ["list"]
---
{% for post in collections.list %}
\- [{{ post.data.title || post.data.title != "" ? post.data.title : post.data.page.fileSlug }}](/list/{{ post.data.page.fileSlug }})
{% endfor %}