Sha256: a2a608817f88b1706bfe9d76c59d3037e1f270c3465175a3a1091dd0ca261d4a

Contents?: true

Size: 825 Bytes

Versions: 30

Compression:

Stored size: 825 Bytes

Contents

{% capture rawtags %}{% for doc in include.items %}{% for tag in doc.tags %}{{ tag }} {% endfor %}{% endfor %}{% endcapture %}

{% assign tags = rawtags | split: " " | uniq %}
{% assign num_tags = tags | size %}

{% if num_tags > 0 %}
  <nav class="item-filter">
    <ul class="tags">
      <li>
        {% if include.tag %}
          <a href="{{ include.url_tag_prefix }}">All</a>
        {% else %}
          <span>All</span>
        {% endif %}
      </li>

      {% for tag in tags %}
        {% assign tag_human = tag | replace: "_", " " %}
        <li>
          {% if tag == include.tag %}
            <span>{{ tag_human }}</span>
          {% else %}
            <a href="{{ include.url_tag_prefix }}{{ tag }}">{{ tag_human }}</a>
          {% endif %}
        </li>
      {% endfor %}
    </ul>
  </nav>
{% endif %}

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
jekyll-theme-open-project-1.1.23 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.22 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.21 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.20 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.19 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.18 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.17 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.16 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.15 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.13 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.12 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.11 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.10 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.9 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.8 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.7 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.6 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.5 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.4 _includes/index-page-item-filter.html
jekyll-theme-open-project-1.1.3 _includes/index-page-item-filter.html