Sha256: 5fbc77c67b7d8be2ece9b7b6c04e675291e1a04f13df7741990849907378c057
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
--- 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' }} ↑</a> </section> {% endif %} {% endfor %} {% endfor %}
Version data entries
6 entries across 6 versions & 1 rubygems