2015-04-28 13:20:15 +00:00
|
|
|
{% capture tagsize %}{{post.tags | size}}{% endcapture %}
|
|
|
|
{% if tagsize != '0' %}
|
|
|
|
<footer>
|
|
|
|
<p class="article-tags">
|
|
|
|
{% for tag in post.tags %}
|
2019-10-25 12:37:37 +00:00
|
|
|
<a href="{% link blog/tag/index.html %}{{ tag }}" class="tag-label">{{tag}}</a>
|
2015-04-28 13:20:15 +00:00
|
|
|
{% endfor %}
|
|
|
|
</p>
|
2016-06-28 11:13:56 +00:00
|
|
|
<br class="clearfix">
|
2015-04-28 13:20:15 +00:00
|
|
|
</footer>
|
|
|
|
{% endif %}
|