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 %}
<ul class=“taxonomy__index”>
{% 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>
{% 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="archive__subtitle">{{ tag[0] }}</h2> <div class="entries-{{ page.entries_layout | default: 'list' }}"> {% for post in tag.last %} {% include archive-single.html type=page.entries_layout %} {% endfor %} </div> <a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a> </section> {% endif %} {% endfor %}
{% endfor %}