display article change dates

pull/1/head
maia arson crimew 2023-05-09 14:03:23 +02:00
parent 02f0ae3420
commit b3d2769ba9
2 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,9 @@ subhead: blog
{% endif %}
<div class="byline">
<time datetime="{{date | date_to_datetime }}">{{ date | date_formatted }}</time>
{% if changed_date %}
<small class="updated">(updated <time datetime="{{changed_date | date_to_datetime }}">{{ changed_date | date_formatted }}</time>)</small>
{% endif %}
<span>by <span class="author by" id="author">{{ site.name }}</span></span>
{% if tags %}
<span>in

View File

@ -54,7 +54,8 @@ footer,
}
time,
.author {
.author,
.updated {
font-weight: bold;
}