basically releasable

This commit is contained in:
Joshua Seigler 2024-06-06 01:32:55 -04:00
parent 04cf8eb646
commit 0314b6a427
41 changed files with 281 additions and 1760 deletions

20
site/index.njk Normal file
View file

@ -0,0 +1,20 @@
---
layout: base
title: Home
---
{% for name, collection in collections %}
{% if name !== "all" %}
<h2>{{name | capitalize }}</h2>
<ul>
{% for item in collection %}
<li>
<a href="{{item.url}}">{{item.data.title}}</a>
{% if item.data.dateString %}
<aside>{{item.data.dateString}}</aside>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}