Update with v3 changes

This commit is contained in:
Daniel J. Summers 2025-07-05 20:06:04 -04:00
parent e0d7413758
commit 5a8a3bfaab
3 changed files with 8 additions and 8 deletions

View File

@ -15,10 +15,10 @@
</h1>
<h4 class=post-meta>
<span title="Published On">
<i class="fa fa-calendar"></i> {{ post.published_on | date: "dddd, MMMM d, yyyy" }}
<i class="fa fa-calendar"></i> {{ post.published_on | format_date: "dddd, MMMM d, yyyy" }}
</span>
<span title="Published At">
<i class="fa fa-clock-o"></i> {{ post.published_on | date: "h:mm tt" | downcase }}
<i class="fa fa-clock-o"></i> {{ post.published_on | format_date: "h:mm tt" | downcase }}
</span>
<span title=Author>
<i class="fa fa-user"></i> {{ model.authors | value: post.author_id }}

View File

@ -5,10 +5,10 @@
<h4 class=post-meta>
{% if post.published_on -%}
<span title="Published On">
<i class="fa fa-calendar"></i> {{ post.published_on | date: "dddd, MMMM d, yyyy" }}
<i class="fa fa-calendar"></i> {{ post.published_on | format_date: "dddd, MMMM d, yyyy" }}
</span>
<span title="Published At">
<i class="fa fa-clock-o"></i> {{ post.published_on | date: "h:mm tt" | downcase }}
<i class="fa fa-clock-o"></i> {{ post.published_on | format_date: "h:mm tt" | downcase }}
</span>
{%- else -%}
<span>**DRAFT**</span>
@ -28,7 +28,7 @@
<h4>
Categorized &nbsp;
{% for cat_id in post.category_ids -%}
{% assign cat = categories | where: "Id", cat_id | first %}
{% assign cat = categories | where: "id", cat_id | first %}
<span class=no-wrap>
<i class="fa fa-folder-open-o" title=Category></i>
<a href="{{ cat | category_link }}" title="Categorized under &ldquo;{{ cat.name | escape }}&rdquo;">

View File

@ -1,2 +1,2 @@
Daniel J. Summers
20250217
20250705