Sha256: b3d7e038c6b5a7a2c259f7f24969e84321fdc8da53b46f7fbbc6098aec965746

Contents?: true

Size: 1.32 KB

Versions: 29

Compression:

Stored size: 1.32 KB

Contents

---
layout: archive
---

{{ content }}

{% assign categories_max = 0 %}
{% for category in site.categories %}
  {% if category[1].size > categories_max %}
    {% assign categories_max = category[1].size %}
  {% endif %}
{% endfor %}

<ul class="taxonomy__index">
  {% 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 entries_layout = page.entries_layout | default: 'list' %}
{% 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="archive__subtitle">{{ category[0] }}</h2>
        <div class="entries-{{ entries_layout }}">
          {% for post in category.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' }} &uarr;</a>
      </section>
    {% endif %}
  {% endfor %}
{% endfor %}

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
creek-jekyll-theme-1.7.5 _layouts/categories.html
creek-jekyll-theme-1.7.4 _layouts/categories.html
creek-jekyll-theme-1.7.3 _layouts/categories.html
creek-jekyll-theme-1.7.1 _layouts/categories.html
creek-jekyll-theme-1.7.0 _layouts/categories.html
creek-jekyll-theme-1.6.0 _layouts/categories.html
creek-jekyll-theme-1.5.0 _layouts/categories.html
creek-jekyll-theme-1.4.1 _layouts/categories.html
creek-jekyll-theme-1.4.0 _layouts/categories.html
creek-jekyll-theme-1.3.0 _layouts/categories.html
creek-jekyll-theme-1.2.2 _layouts/categories.html
creek-jekyll-theme-1.2.0 _layouts/categories.html
creek-jekyll-theme-1.1.0 _layouts/categories.html
creek-jekyll-theme-1.0.0 _layouts/categories.html
creek-jekyll-theme-0.5.2 _layouts/categories.html
creek-jekyll-theme-0.5.1 _layouts/categories.html
creek-jekyll-theme-0.5.0 _layouts/categories.html
creek-jekyll-theme-0.3.0 _layouts/categories.html
creek-jekyll-theme-0.2.2 _layouts/categories.html
creek-jekyll-theme-0.2.1 _layouts/categories.html