From b8472db2b7e55f437a14cb0790c1c8bdacd100b1 Mon Sep 17 00:00:00 2001 From: Gil Date: Mon, 12 May 2025 08:40:52 -0500 Subject: [PATCH] Rename "post" to "entry" (but not in collections) --- src/journal/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/journal/index.md b/src/journal/index.md index 3c3b8a8..576a763 100644 --- a/src/journal/index.md +++ b/src/journal/index.md @@ -11,10 +11,10 @@ eleventyNavigation: # Journal -All my posts. +All my journal entries.
    -{% for post in collections.post reversed %} -
  1. {{ post.date | date: "%Y-%m-%d" }}: {{ post.data.title }}
  2. +{% for entry in collections.post reversed %} +
  3. {{ entry.date | date: "%Y-%m-%d" }}: {{ entry.data.title }}
  4. {% endfor %}