---
layout: layouts/base.njk
title: Categories
permalink: /categories/
---
Categories
{% if collections.categoryList and collections.categoryList.length %}
{% for cat in collections.categoryList %}
{% set count = 0 %}
{% for post in collections.posts %}
{% if post.data.category and post.data.category == cat %}
{% set count = count + 1 %}
{% endif %}
{% endfor %}
-
{{ cat }}
{{ count }} post{% if count != 1 %}s{% endif %}
{% endfor %}
{% else %}
No categories yet.
{% endif %}