---
layout: archive
---
{{ content }}
{% assign tags_max = 0 %}
{% for tag in site.tags %}
{% if tag[1].size > tags_max %}
{% assign tags_max = tag[1].size %}
{% endif %}
{% endfor %}
Sections
Tags Grouped by Section
This system of navigation is part of an ongoing transition towards making this content, and its subject-matter, more accessible based upon the specific topic you are interested in.
{% for item in site.data.tagz %}
{{ item[0] | upcase | replace: "_", "-" }}
{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑
{% for i in (1..tags_max) reversed %}
{% for tag in site.tags %}
{% if tag[1].size == i and item[1] contains tag[0] %}
-
{{ tag[0] }} {{ i }}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}