make date semantic
This commit is contained in:
parent
c61c499ddb
commit
43a66e7901
|
@ -13,7 +13,7 @@
|
|||
<p class="date">
|
||||
Published the
|
||||
|
||||
{% include dates.html %}
|
||||
<time datetime="{{ page.date }}">{% include dates.html %}</time>
|
||||
</p>
|
||||
|
||||
{% endif %}
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue