links in timeline

This commit is contained in:
Joshua Seigler 2025-06-05 22:54:48 -04:00
parent 437d8b255a
commit 5b1b1b6675
15 changed files with 28 additions and 18 deletions

View file

@ -6,7 +6,7 @@ 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>
<h3 id="{{item.data.time}}"><a class="header-anchor" href="#{{item.data.time}}" aria-hidden="true"></a>{{ item.data.title | markdown | safe }} <aside>{{item.data.time}}</aside></h3>
<p>{{ item.data.description | markdown | safe }}</p>
{% endif %}
{% endfor %}