Files
11ty_neocities/src/blog.html

15 lines
346 B
HTML
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!
<ul>
{% for post in collections.blog | reverse %}
<li>
<a href="{{ post.data.page.fileSlug }}">{{ post.data.title }}</a>
</li>
{% endfor %}
</ul>
<!-- post.data contents are at https://github.com/11ty/eleventy/discussions/2284 -->