Sha256: 13d583b5451f93ef934a3da764fc6baa8b767dcafe054960fafb167efd2c65af

Contents?: true

Size: 1.22 KB

Versions: 10

Compression:

Stored size: 1.22 KB

Contents

{% case site.tag_archive.type %}
  {% when "liquid" %}
    {% assign path_type = "#" %}
  {% when "jekyll-archives" %}
    {% assign path_type = nil %}
{% endcase %}

{% if site.tag_archive.path %}
  {% comment %}
    <!-- Sort alphabetically regardless of case e.g. a B c d E -->
    <!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
  {% endcomment %}
  {% capture page_tags %}{% for tag in page.tags %}{{ tag | downcase }}#{{ tag }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
  {% assign tag_hashes = (page_tags | split: ',' | sort:0) %}

  <p class="page__taxonomy">
    <strong><i class="fa fa-fw fa-tags" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].tags_label | default: "Tags:" }} </strong>
    <span itemprop="keywords">
    {% for hash in tag_hashes %}
      {% assign keyValue = hash | split: '#' %}
      {% capture tag_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
      <a href="{{ tag_word | slugify | prepend: path_type | prepend: site.tag_archive.path | absolute_url }}" class="page__taxonomy-item" rel="tag">{{ tag_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
    {% endfor %}
    </span>
  </p>
{% endif %}

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
minimal-mistakes-jekyll-4.4.1 _includes/tag-list.html
jekyll-theme-woforo-0.2.3 _includes/tag-list.html
jekyll-theme-woforo-0.2.2 _includes/tag-list.html
jekyll-theme-woforo-0.2.1 _includes/tag-list.html
jekyll-theme-woforo-0.2.0 _includes/tag-list.html
mje-nz-mistakes-jekyll-4.1.1.2 _includes/tag-list.html
mje-nz-mistakes-jekyll-4.1.1.1 _includes/tag-list.html
mje-nz-mistakes-jekyll-4.1.1.dev _includes/tag-list.html
minimal-mistakes-jekyll-4.1.1 _includes/tag-list.html
minimal-mistakes-jekyll-4.0.2 _includes/tag-list.html