Sha256: c95dd7bcdc07d253ce6024c42ccedd6bafb8ae610043520aa540af82b7c04fe9

Contents?: true

Size: 906 Bytes

Versions: 3

Compression:

Stored size: 906 Bytes

Contents

{% if tags_list.first[0] == null %}
    {% for tag in tags_list %}
        {% assign actual_tag_name = tag | replace:' ',' ' %}
        <li>
            <a class="internal" data-ga="{{ actual_tag_name }}" href="{{ site.paths.tags | relative_url }}#{{ actual_tag_name | replace:' ','-' | replace:'#','sharp' }}" title="{{ actual_tag_name }}">{{ actual_tag_name }} <span>{{ site.tags[actual_tag_name].size }}</span></a>
        </li>
    {% endfor %}
{% else %}
    {% for tag in tags_list %}
        {% assign actual_tag_name = tag[0] | replace:'&#32;',' ' %}
        <li>
            <a class="internal" data-ga="{{ actual_tag_name }}" href="{{ site.paths.tags | relative_url }}#{{ actual_tag_name | replace:' ','-' | replace:'#','sharp' }}" title="{{ actual_tag_name }}">{{ actual_tag_name }} <span>{{ tag[1].size }}</span></a>
        </li>
    {% endfor %}
{% endif %}

{% assign tags_list = nil %}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jekyll-theme-simple-texture-0.1.3 _includes/helpers/tags_list
jekyll-theme-simple-texture-0.1.2 _includes/helpers/tags_list
jekyll-theme-simple-texture-0.1.1 _includes/helpers/tags_list