Update with v3 changes
This commit is contained in:
parent
e0d7413758
commit
5a8a3bfaab
@ -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 }}
|
||||||
|
@ -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
|
Categorized
|
||||||
{% 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 “{{ cat.name | escape }}”">
|
<a href="{{ cat | category_link }}" title="Categorized under “{{ cat.name | escape }}”">
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
Daniel J. Summers
|
Daniel J. Summers
|
||||||
20250217
|
20250705
|
||||||
|
Loading…
x
Reference in New Issue
Block a user