20 lines
362 B
Markdown
20 lines
362 B
Markdown
|
---
|
||
|
title: "Journal"
|
||
|
layout: single.njk
|
||
|
lastmod: 2025-05-12T00:50:00.00-05:00
|
||
|
eleventyImport:
|
||
|
collections: ["post"]
|
||
|
eleventyNavigation:
|
||
|
key: "Journal"
|
||
|
order: 1
|
||
|
---
|
||
|
|
||
|
# Journal
|
||
|
|
||
|
All my posts.
|
||
|
|
||
|
<ol>
|
||
|
{% for post in collections.post reversed %}
|
||
|
<li>{{ post.date | date: "%Y-%m-%d" }}: <a href="{{ post.url }}">{{ post.data.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ol>
|