Delete extra space ; Update blog.md (#2444)
This commit is contained in:
parent
e8a2a40ae8
commit
c7265a9bcb
|
|
@ -155,7 +155,10 @@ pagination:
|
|||
·
|
||||
{% for tag in post.tags %}
|
||||
<a href="{{ tag | slugify | prepend: '/blog/tag/' | prepend: site.baseurl}}">
|
||||
<i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }}</a>
|
||||
<i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }}</a>
|
||||
{% unless forloop.last %}
|
||||
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
|
|
@ -163,7 +166,10 @@ pagination:
|
|||
·
|
||||
{% for category in post.categories %}
|
||||
<a href="{{ category | slugify | prepend: '/blog/category/' | prepend: site.baseurl}}">
|
||||
<i class="fa-solid fa-tag fa-sm"></i> {{ category }}</a>
|
||||
<i class="fa-solid fa-tag fa-sm"></i> {{ category }}</a>
|
||||
{% unless forloop.last %}
|
||||
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Reference in New Issue