Sha256: 62bada0a907b669428bb556e15b8dc6ca8fcbcb00e4913ece059a5993b6ebf0f
Contents?: true
Size: 1.22 KB
Versions: 31
Compression:
Stored size: 1.22 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> {% assign entries_layout = page.entries_layout | default: 'list' %} {% 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-{{ entries_layout }}"> {% for post in tag.last %} {% include archive-single.html type=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
31 entries across 31 versions & 2 rubygems