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> </h1>
<h4 class=post-meta> <h4 class=post-meta>
<span title="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>
<span title="Published At"> <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>
<span title=Author> <span title=Author>
<i class="fa fa-user"></i> {{ model.authors | value: post.author_id }} <i class="fa fa-user"></i> {{ model.authors | value: post.author_id }}
@ -78,4 +78,4 @@
{%- endfor %} {%- endfor %}
</ul> </ul>
</div> </div>
</div> </div>

View File

@ -5,10 +5,10 @@
<h4 class=post-meta> <h4 class=post-meta>
{% if post.published_on -%} {% if post.published_on -%}
<span title="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>
<span title="Published At"> <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>
{%- else -%} {%- else -%}
<span>**DRAFT**</span> <span>**DRAFT**</span>
@ -28,7 +28,7 @@
<h4> <h4>
Categorized &nbsp; Categorized &nbsp;
{% for cat_id in post.category_ids -%} {% 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> <span class=no-wrap>
<i class="fa fa-folder-open-o" title=Category></i> <i class="fa fa-folder-open-o" title=Category></i>
<a href="{{ cat | category_link }}" title="Categorized under &ldquo;{{ cat.name | escape }}&rdquo;"> <a href="{{ cat | category_link }}" title="Categorized under &ldquo;{{ cat.name | escape }}&rdquo;">
@ -73,4 +73,4 @@
</ul> </ul>
</nav> </nav>
</div> </div>
</div> </div>

View File

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