From 476b1db60df70c2a761341250dfd630308aff863 Mon Sep 17 00:00:00 2001 From: erciccione Date: Wed, 10 Jun 2020 08:27:16 +0200 Subject: [PATCH] Blog: separate post categories with a comma --- blog/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/index.html b/blog/index.html index c5cc22af..0db29138 100644 --- a/blog/index.html +++ b/blog/index.html @@ -20,7 +20,7 @@ title: titles.allposts {% t blog.author %} {{ post.author }} | {{ post.date | date: "%-d %B %Y" }}
Category: {% for tag in post.tags %} - {{ tag }} + {{ tag }}{% unless forloop.last %},{% endunless %} {% endfor %}