---
layout: archive
---
{% assign categories_max = 0 %}
{% for category in collections.categories %}
{% if collections[category].size > categories_max %}
{% assign categories_max = collections[category].size %}
{% endif %}
{% endfor %}
{% for i in (1..categories_max) reversed %}
{% for category in collections.categories %}
{% if collections[category].size == i %}
-
{{ category }} {{ i }}
{% endif %}
{% endfor %}
{% endfor %}
{% assign entries_layout = entries_layout | default: 'list' %}
{% for i in (1..categories_max) reversed %}
{% for category in collections.categories %}
{% if collections[category].size == i %}
{% endif %}
{% endfor %}
{% endfor %}