--- layout: page --- {{ content }} {% comment %} Check the type of archive {% endcomment %} {%- if page.type == 'categories' -%} {%- assign taxonomies = site.categories -%} {%- elsif page.type == 'tags' -%} {%- assign taxonomies = site.tags -%} {%- else -%} {%- assign taxonomies = none -%} {%- endif -%} {% comment %} Calculate the max count of taxonomies {% endcomment %} {%- assign max_count = 0 -%} {%- for taxonomy in taxonomies -%} {%- assign posts = taxonomy[1] -%} {%- if posts.size > max_count -%} {%- assign max_count = posts.size -%} {%- endif -%} {%- endfor -%}