From c86713d7e92b3c4929a3074aa035e31156560967 Mon Sep 17 00:00:00 2001 From: Furkan Akkurt Date: Mon, 27 May 2024 22:27:00 +0300 Subject: [PATCH] Delete extra space ; Update post.liquid It seems the same problem exists in the posts as well. The relevant PR is [here](https://github.com/alshedivat/al-folio/pull/2444). --- _layouts/post.liquid | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/_layouts/post.liquid b/_layouts/post.liquid index ccb659cfd457..89e1e6adb1c7 100644 --- a/_layouts/post.liquid +++ b/_layouts/post.liquid @@ -34,10 +34,12 @@ layout: default {% for tag in page.tags %} {% if url_beginning == '/blog/' %} {{ tag }} -   {% else %} - {{ tag }}   + {{ tag }} {% endif %} + {% unless forloop.last %} +   + {% endunless %} {% endfor %} {% endif %} @@ -48,10 +50,12 @@ layout: default {{ category -}} -   {% else %} - {{ category }}   + {{ category }} {% endif %} + {% unless forloop.last %} +   + {% endunless %} {% endfor %} {% endif %}