From 1274581702730d0ac9aa945ac1207d80becaa58c Mon Sep 17 00:00:00 2001 From: Furkan Akkurt Date: Tue, 28 May 2024 03:07:39 +0300 Subject: [PATCH] Delete extra space ; Update post.liquid (#2452) 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 ccb659c..89e1e6a 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 %}