diff options
author | Wolfgang Müller | 2021-08-13 13:50:14 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-08-13 13:50:14 +0200 |
commit | 417ea38248e7a716bdeada3bde3c9063fba558da (patch) | |
tree | b94ba9387619a11dba4affe4af64cf292de5814c /templates | |
parent | 0d17c0c99a95180f2877404d20a26f4388a06f64 (diff) | |
download | zunzuncito-417ea38248e7a716bdeada3bde3c9063fba558da.tar.gz |
templates: Do not show exact post times
Now that about two months have passed since the initial publication, we
know better with which frequency posts are made. Since there's usually
more than one day between posts, rendering prominently the time at which
posts were made is needlessly noisy.
We already put the exact date and time in the HTML source and the title
tag, so it is still there if really needed.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/macros.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/macros.html b/templates/macros.html index 6bb608b..d3ba894 100644 --- a/templates/macros.html +++ b/templates/macros.html @@ -5,7 +5,7 @@ <div class="banner smaller"> <div class="info"> <a class="bold-hover" title="permalink to this post" href="{{ post.permalink }}">{% if mention %}№ {{ post.slug }} {% else %}§{% endif %}</a> - <time class="mute" datetime="{{ post.date }}" title="{{ post.date }}">{{ post.date | date(format="%F %R") }}</time> + <time class="mute" datetime="{{ post.date }}" title="{{ post.date }}">{{ post.date | date(format="%F") }}</time> <h2 class="mute title">{{ post.title }}</h2> </div> {%- if "tags" in post.taxonomies %} |