summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2021-08-13 13:50:14 +0200
committerWolfgang Müller2021-08-13 13:50:14 +0200
commit417ea38248e7a716bdeada3bde3c9063fba558da (patch)
treeb94ba9387619a11dba4affe4af64cf292de5814c
parent0d17c0c99a95180f2877404d20a26f4388a06f64 (diff)
downloadzunzuncito-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.
-rw-r--r--templates/macros.html2
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 %}