Update '_layouts/post.html'

This commit is contained in:
Kale 2021-06-08 09:46:39 -07:00
parent b3ba595688
commit 38078c8d1f
No known key found for this signature in database
GPG Key ID: F8A6CE83F1274467

View File

@ -7,13 +7,13 @@ layout: default
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1> <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
<p class="post-meta"> <p class="post-meta">
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> <h3><time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"></h3>
{{ page.date | date: date_format }} {{ page.date | date: date_format }}
</time> </time>
{%- if page.modified_date -%} {%- if page.modified_date -%}
~ ~
{%- assign mdate = page.modified_date | date_to_xmlschema -%} {%- assign mdate = page.modified_date | date_to_xmlschema -%}
<time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified"> <h3><time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified"></h3>
{{ mdate | date: date_format }} {{ mdate | date: date_format }}
</time> </time>
{%- endif -%} {%- endif -%}