gergelypolonkai-web-jekyll/_includes/tag-link.html

12 lines
401 B
HTML
Raw Normal View History

{% 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>
2016-06-28 11:13:56 +00:00
<br class="clearfix">
</footer>
{% endif %}