add boilerplate

This commit is contained in:
2023-02-21 00:02:35 +10:30
commit 80ee80e014
19 changed files with 3964 additions and 0 deletions

15
src/blog.html Normal file
View File

@ -0,0 +1,15 @@
---
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 -->