Sha256: 440aeeae68765bb511a71d6c51e83ee8785b25dcbd0de26609a3bf79d3d10c52
Contents?: true
Size: 1.18 KB
Versions: 30
Compression:
Stored size: 1.18 KB
Contents
--- 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 %}
Version data entries
30 entries across 30 versions & 2 rubygems