31 lines
460 B
Markdown
31 lines
460 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 journal entries.
|
|
|
|
<ol>
|
|
{% for entry in collections.post reversed %}
|
|
<li>{{ entry.date | date: "%Y-%m-%d" }}: <a href="{{ entry.url }}">{{ entry.data.title }}</a></li>
|
|
{% endfor %}
|
|
</ol>
|
|
|
|
## Categories (WIP)
|
|
|
|
**By year**
|
|
|
|
- 2025
|
|
|
|
**By topic**
|
|
|
|
- Stream of consciousness
|