Update with v3 changes
This commit is contained in:
parent
e0d7413758
commit
5a8a3bfaab
@ -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 }}
|
||||
@ -78,4 +78,4 @@
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -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
|
||||
{% 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 “{{ cat.name | escape }}”">
|
||||
@ -73,4 +73,4 @@
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,2 +1,2 @@
|
||||
Daniel J. Summers
|
||||
20250217
|
||||
20250705
|
||||
|
Loading…
x
Reference in New Issue
Block a user