From 5b1939eaa0915f0f79286a9706d2c856c0f0defd Mon Sep 17 00:00:00 2001 From: lew Date: Sat, 2 May 2026 18:57:56 +0100 Subject: [PATCH] dates are muted --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 28e650f..895fbf4 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8,14 +8,14 @@ {% set blog = get_section(path="blog/_index.md") %} {% for post in blog.pages %} -{{ post.date }} {{ post.title }}
+{{ post.date }}{{ post.title }}
{% endfor %}

Reading

{% set reading = get_section(path="reading/_index.md") %} {% for post in reading.pages %} -{{ post.date}} {{ post.title }}
+{{ post.date}}{{ post.title }}
{% endfor %} {% endblock %}