make date semantic

This commit is contained in:
Set Hallstrom 2020-10-14 14:02:46 +02:00
parent c61c499ddb
commit 43a66e7901
4 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@
<p class="date">
Published the
{% include dates.html %}
<time datetime="{{ page.date }}">{% include dates.html %}</time>
</p>
{% endif %}

View File

@ -61,13 +61,11 @@ layout: default
{% assign author = site.authors | where: "url", author_id | first %}
<div id="author">
<div class="bio">
<p><a href="mailto:{{ author.email }}"><strong>{{ author.name }}</strong></a></p>
<p>{{ author.position }}{% if author.gpg != nil %} | <a target="_blank" rel="noopener"
href="{{ author.gpg }}">GPG</a>{% endif %}</p>
<p class="date">
Published the
{% include dates.html %}
<time datetime="{{ page.date }}">{% include dates.html %}</time>
</p>

View File

@ -28,6 +28,7 @@ layout: default
<div class="container">
<div class="">
<h3>{{ post.title }}</h3>
<p><time datetime="{{ post.date }}">{% include forloop-dates.html %}</time></p>
{{ post.description }}
</div>
<div>

View File

@ -60,6 +60,7 @@ layout: default
<div class="container">
<div class="">
<h3>{{ post.title }}</h3>
<p><time datetime="{{ post.date }}">{% include forloop-dates.html %}</time></p>
{{ post.description }}
</div>