layout: page


{{ content }}

<ul class=“taxonomy-index”>

{% assign tags_max = 0 %}
{% for tag in site.tags %}
  {% if tag[1].size > tags_max %}
    {% assign tags_max = tag[1].size %}
  {% endif %}
{% endfor %}
{% for i in (1..tags_max) reversed %}
  {% for tag in site.tags %}
    {% if tag[1].size == i %}
      <li>
        <a href="#{{ tag[0] | slugify }}">
          <strong>{{ tag[0] }}</strong> <span class="taxonomy-count">{{ i }}</span>
        </a>
      </li>
    {% endif %}
  {% endfor %}
{% endfor %}

</ul>

{% assign tags_max = 0 %} {% for tag in site.tags %}

{% if tag[1].size > tags_max %}
  {% assign tags_max = tag[1].size %}
{% endif %}

{% endfor %}

{% for i in (1..tags_max) reversed %}

{% for tag in site.tags %}
  {% if tag[1].size == i %}
    <section id="{{ tag[0] | slugify | downcase }}" class="taxonomy-section">
      <h2 class="taxonomy-title">{{ tag[0] }}</h2>
      <div class="entries-{{ page.entries_layout | default: 'list' }}">
        {% for post in tag.last %}
          {% include entry.html %}
        {% endfor %}
      </div>
      <a href="#page-title" class="back-to-top">{{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</a>
    </section>
  {% endif %}
{% endfor %}

{% endfor %}