From 1e93e453033e225fe2c00e949480a338042d1191 Mon Sep 17 00:00:00 2001 From: giteaadmin Date: Wed, 13 Aug 2025 23:10:24 -0400 Subject: [PATCH] fix: remove unnecessary colon from publication date in post template --- src/_includes/post.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_includes/post.njk b/src/_includes/post.njk index ada70c2..a262a22 100644 --- a/src/_includes/post.njk +++ b/src/_includes/post.njk @@ -3,7 +3,7 @@ layout: "layout.njk" ---

{{ title }}

-

Published on: {{ date | readableDate }}

+

Published on {{ date | readableDate }}


{{ content | safe }}