brouilleursdeblanc/tags/index.md
Michael Rose a9ab8b7bf7 Remove search overlay
- Fixes #88
- Replace overlay with dedicated search page (see /search/index.md)
- Replace simpleJekyllSearch.js
- Include pages in search.json index
2015-01-22 10:20:09 -05:00

1.1 KiB

layout title excerpt search_omit
page Tag Index An archive of posts sorted by tag. true

{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %} {% assign tags_list = site_tags | split:',' | sort %}

    {% for item in (0..site.tags.size) %}{% unless forloop.last %} {% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
  • {{ this_word }} {{ site.tags[this_word].size }}
  • {% endunless %}{% endfor %}

{% for item in (0..site.tags.size) %}{% unless forloop.last %} {% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}

{{ this_word }}

    {% for post in site.tags[this_word] %}{% if post.title != null %}
  • {{ post.title }}
  • {% endif %}{% endfor %}
{% endunless %}{% endfor %}