Files
11ty_neocities/src/blog.md

11 lines
310 B
Markdown
Raw Normal View History

2023-02-21 00:02:35 +10:30
---
title: This Is My Blog
layout: layout/base.njk
---
These are all of my amazing blog posts, enjoy!
{% for post in collections.blog | reverse %}
2023-02-25 23:47:44 +10:30
- [{{ post.data.title }}]({{ post.data.page.fileSlug }})
2023-02-21 00:02:35 +10:30
{% endfor %}
<!-- post.data contents are at https://github.com/11ty/eleventy/discussions/2284 -->