2336e7df0b
They now look like actual tags
11 lines
363 B
HTML
11 lines
363 B
HTML
{% capture tagsize %}{{post.tags | size}}{% endcapture %}
|
|
{% if tagsize != '0' %}
|
|
<footer>
|
|
<p class="article-tags">
|
|
{% for tag in post.tags %}
|
|
<a href="{{tag | prepend: '/blog/tag/' | prepend: site.baseurl}}" class="tag-label">{{tag}}</a>
|
|
{% endfor %}
|
|
</p>
|
|
</footer>
|
|
{% endif %}
|