Sha256: 9fea691b8f21eba500a49ac1ac64c09432014213261a1c60d63e8aa9062b3fc1

Contents?: true

Size: 558 Bytes

Versions: 5

Compression:

Stored size: 558 Bytes

Contents

{% assign rawtags = "" %}
{% for post in site.posts %}
  {% assign ttags = post.tags | join:'|' | append:'|' %}
  {% assign rawtags = rawtags | append:ttags %}
{% endfor %}
{% assign rawtags = rawtags | split:'|' | sort %}

{% assign site.tags = "" %}
{% for tag in rawtags %}
  {% if tag != "" %}
    {% if tags == "" %}
      {% assign tags = tag | split:'|' %}
    {% endif %}
    {% unless tags contains tag %}
      {% assign tags = tags | join:'|' | append:'|' | append:tag | split:'|' %}
    {% endunless %}
  {% endif %}
{% endfor %}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
jekyll-theme-console-ext-2.4 _includes/collecttags.html
jekyll-theme-console-ext-2.3 _includes/collecttags.html
jekyll-theme-console-ext-2.2 _includes/collecttags.html
jekyll-theme-console-ext-2.1 _includes/collecttags.html
jekyll-theme-minimax-0.2.0 _includes/collect_tags.html