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).
This commit is contained in:
parent
50a2f67477
commit
1274581702
|
|
@ -34,10 +34,12 @@ layout: default
|
|||
{% for tag in page.tags %}
|
||||
{% if url_beginning == '/blog/' %}
|
||||
<a href="{{ tag | slugify | prepend: '/blog/tag/' | prepend: site.baseurl}}"> <i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }}</a>
|
||||
|
||||
{% else %}
|
||||
<i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }}
|
||||
<i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }}
|
||||
{% endif %}
|
||||
{% unless forloop.last %}
|
||||
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
|
|
@ -48,10 +50,12 @@ layout: default
|
|||
<a href="{{ category | slugify | prepend: '/blog/category/' | prepend: site.baseurl}}">
|
||||
<i class="fa-solid fa-tag fa-sm"></i> {{ category -}}
|
||||
</a>
|
||||
|
||||
{% else %}
|
||||
<i class="fa-solid fa-tag fa-sm"></i> {{ category }}
|
||||
<i class="fa-solid fa-tag fa-sm"></i> {{ category }}
|
||||
{% endif %}
|
||||
{% unless forloop.last %}
|
||||
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Reference in New Issue