This commit is contained in:
Joshua Seigler 2024-06-07 02:46:15 -04:00
parent 0314b6a427
commit 16128c6279
53 changed files with 713 additions and 75 deletions

12
site/timeline/index.njk Normal file
View file

@ -0,0 +1,12 @@
---
layout: base.njk
tags: timeline
permalink: timeline/index.html
title: Timeline
---
{% for item in collections.timeline | reverse %}
{% if item.data.title !== "Timeline" %}
<h3 id="{{item.data.time}}"><a class="header-anchor" href="#{{item.data.time}}" aria-hidden="true"></a>{{ item.data.title }} <aside>{{item.data.time}}</aside></h3>
<p>{{ item.data.description }}</p>
{% endif %}
{% endfor %}