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