From 5a8a3bfaab9db0d43a90e27652fbad66965e2894 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Sat, 5 Jul 2025 20:06:04 -0400 Subject: [PATCH] Update with v3 changes --- src/index.liquid | 6 +++--- src/single-post.liquid | 8 ++++---- src/version.txt | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/index.liquid b/src/index.liquid index fade720..d1ea49d 100644 --- a/src/index.liquid +++ b/src/index.liquid @@ -15,10 +15,10 @@

- {{ post.published_on | date: "dddd, MMMM d, yyyy" }} + {{ post.published_on | format_date: "dddd, MMMM d, yyyy" }} - {{ post.published_on | date: "h:mm tt" | downcase }} + {{ post.published_on | format_date: "h:mm tt" | downcase }} {{ model.authors | value: post.author_id }} @@ -78,4 +78,4 @@ {%- endfor %} - \ No newline at end of file + diff --git a/src/single-post.liquid b/src/single-post.liquid index 5f45ed6..ef3394a 100644 --- a/src/single-post.liquid +++ b/src/single-post.liquid @@ -5,10 +5,10 @@

Categorized   {% for cat_id in post.category_ids -%} - {% assign cat = categories | where: "Id", cat_id | first %} + {% assign cat = categories | where: "id", cat_id | first %} @@ -73,4 +73,4 @@ - \ No newline at end of file + diff --git a/src/version.txt b/src/version.txt index 71abbed..7763fb1 100644 --- a/src/version.txt +++ b/src/version.txt @@ -1,2 +1,2 @@ Daniel J. Summers -20250217 \ No newline at end of file +20250705