Sha256: 2ddcb157beec22574cfc78d7a85e81aa06522a213240579d6d8bdfcd846b90fc

Contents?: true

Size: 907 Bytes

Versions: 27

Compression:

Stored size: 907 Bytes

Contents

{% assign tags = include.tags %}
{% assign meta = include.meta %}
{% assign start_with = include.start_with %}
{% assign separator = include.separator %}
{% assign end_with = include.end_with %}

{% assign content = '' %}

{% if tags.size > 0 %}
  {% assign content = start_with %}
  {% for tag_slug in tags %}
    {% capture iter_separator %}{% if forloop.last %}{{ end_with }}{% else %}{{ separator }}{% endif %}{% endcapture %}

    {% assign tag = meta | where: "slug", tag_slug | first %}

    {% if tag %}
      {% capture content_temp %}{{ content }}<a href="{{ tag.url | relative_url }}" class="flip-title">{{ tag.title }}</a>{{ iter_separator }}{% endcapture %}
    {% else %}
      {% capture content_temp %}{{ content }}<span>{{ tag_slug | capitalize }}</span>{{ iter_separator }}{% endcapture %}
    {% endif %}

    {% assign content = content_temp %}
  {% endfor %}
{% endif %}

{{ content }}

Version data entries

27 entries across 27 versions & 2 rubygems

Version Path
jekyll-theme-hydebetty-1.0.2 _includes/components/tag-list.html
jekyll-theme-hydebetty-1.0.1 _includes/components/tag-list.html
jekyll-theme-hydejack-8.5.2 _includes/components/tag-list.html
jekyll-theme-hydejack-8.5.1 _includes/components/tag-list.html
jekyll-theme-hydejack-8.5.0 _includes/components/tag-list.html
jekyll-theme-hydejack-8.4.0 _includes/components/tag-list.html
jekyll-theme-hydejack-8.3.2 _includes/components/tag-list.html
jekyll-theme-hydejack-8.3.1 _includes/components/tag-list.html
jekyll-theme-hydejack-8.3.0 _includes/components/tag-list.html
jekyll-theme-hydejack-8.2.0 _includes/components/tag-list.html
jekyll-theme-hydejack-8.1.1 _includes/components/tag-list.html
jekyll-theme-hydejack-8.1.0 _includes/components/tag-list.html
jekyll-theme-hydejack-8.0.0 _includes/components/tag-list.html
jekyll-theme-hydejack-7.5.2 _includes/tag-list.html
jekyll-theme-hydejack-7.5.1 _includes/tag-list.html
jekyll-theme-hydejack-7.5.0 _includes/tag-list.html
jekyll-theme-hydejack-7.4.2 _includes/tag-list.html
jekyll-theme-hydejack-7.4.1 _includes/tag-list.html
jekyll-theme-hydejack-7.4.0 _includes/tag-list.html
jekyll-theme-hydejack-7.3.0 _includes/tag-list.html