add the rest of the markdown files

This commit is contained in:
2023-02-25 23:47:44 +10:30
parent c5c21d7042
commit a1e31ee767
5 changed files with 13 additions and 24 deletions

11
src/blog.md Normal file
View File

@ -0,0 +1,11 @@
---
title: This Is My Blog
layout: layout/base.njk
---
These are all of my amazing blog posts, enjoy!
{% for post in collections.blog | reverse %}
- [{{ post.data.title }}]({{ post.data.page.fileSlug }})
{% endfor %}
<!-- post.data contents are at https://github.com/11ty/eleventy/discussions/2284 -->