Sha256: 5cf9c49d05114e6b0d1d65a3f8e5b68276286db182b3bdb78b27f787fe86e4f6
Contents?: true
Size: 1.44 KB
Versions: 4
Compression:
Stored size: 1.44 KB
Contents
--- layout: page --- {{ content }} <ul class="taxonomy-index"> {% assign categories_max = 0 %} {% for category in site.categories %} {% if category[1].size > categories_max %} {% assign categories_max = category[1].size %} {% endif %} {% endfor %} {% for i in (1..categories_max) reversed %} {% for category in site.categories %} {% if category[1].size == i %} <li> <a href="#{{ category[0] | slugify }}"> <strong>{{ category[0] }}</strong> <span class="taxonomy-count">{{ i }}</span> </a> </li> {% endif %} {% endfor %} {% endfor %} </ul> {% assign categories_max = 0 %} {% for category in site.categories %} {% if category[1].size > categories_max %} {% assign categories_max = category[1].size %} {% endif %} {% endfor %} {% for i in (1..categories_max) reversed %} {% for category in site.categories %} {% if category[1].size == i %} <section id="{{ category[0] | slugify | downcase }}" class="taxonomy-section"> <h2 class="taxonomy-title">{{ category[0] }}</h2> <div class="entries-{{ page.entries_layout | default: 'list' }}"> {% for entry in category.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
4 entries across 4 versions & 1 rubygems