summaryrefslogtreecommitdiffstats
path: root/source/_includes/post/categories.html
blob: 2ec7896681257820172022e4000beb1596d9e41c (plain)
1
2
3
4
5
6
7
8
9
10
{% capture category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %}
{% unless category == '0' %}
<div class="cat">
  {% if post %}
    {{ post.categories | category_links }}
  {% else %}
    {{ page.categories | category_links }}
  {% endif %}
</div>
{% endunless %}