Skip to content

Commit

Permalink
Delete extra space ; Update blog.md (alshedivat#2444)
Browse files Browse the repository at this point in the history
  • Loading branch information
furkanakkurt1335 authored May 27, 2024
1 parent cf69d81 commit 2bf0cde
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions _pages/blog.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,21 @@ 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> &nbsp;
<i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }}</a>
{% unless forloop.last %}
&nbsp;
{% endunless %}
{% endfor %}
{% endif %}

{% if categories != "" %}
&nbsp; &middot; &nbsp;
{% 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> &nbsp;
<i class="fa-solid fa-tag fa-sm"></i> {{ category }}</a>
{% unless forloop.last %}
&nbsp;
{% endunless %}
{% endfor %}
{% endif %}
</p>
Expand Down

0 comments on commit 2bf0cde

Please sign in to comment.