This commit is contained in:
Garry Ing 2021-03-20 11:54:21 -04:00
parent 2a98674f82
commit 8f8e22fe2d
No known key found for this signature in database
GPG Key ID: 3B379B1F2193CC3E
2 changed files with 7 additions and 5 deletions

View File

@ -42,6 +42,7 @@ collections:
permalink: /:slug
feed:
path: feed.xml
collections:
notes:
path: "/feed.xml"

View File

@ -5,11 +5,12 @@ layout: default
<article class="w-50">
<header class="mb2">
<h1>{{ page.title }}</h1>
{% if page.date_created %}
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="{{ page.date_created | date_to_xmlschema }}">{% if page.type != 'pages' %}
Created on {{ page.date_created | date: "%B %-d, %Y" }}
{% endif %}
</time>
</header>
{% endif %}
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="{{ page.last_modified_at | date_to_xmlschema }}">{% if page.type != 'pages' %}
Last updated on {{ page.last_modified_at | date: "%B %-d, %Y" }}
{% endif %}