2013-06-25 20:19:49 +00:00
|
|
|
---
|
|
|
|
layout: page
|
2014-01-24 18:32:45 +00:00
|
|
|
permalink: /tags/
|
2013-06-25 20:19:49 +00:00
|
|
|
title: Tag Index
|
|
|
|
description: "An archive of posts sorted by tag."
|
|
|
|
---
|
|
|
|
|
2014-06-11 17:43:08 +00:00
|
|
|
{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
|
|
|
|
{% assign tags_list = site_tags | split:',' | sort %}
|
|
|
|
|
2013-06-27 15:56:09 +00:00
|
|
|
<ul class="tag-box inline">
|
2014-06-11 17:43:08 +00:00
|
|
|
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
|
|
|
|
{% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
|
|
|
|
<li><a href="#{{ this_word }}">{{ this_word }} <span>{{ site.tags[this_word].size }}</span></a></li>
|
|
|
|
{% endunless %}{% endfor %}
|
2013-06-27 15:56:09 +00:00
|
|
|
</ul>
|
|
|
|
|
2014-06-11 17:43:08 +00:00
|
|
|
{% for item in (0..site.tags.size) %}{% unless forloop.last %}
|
|
|
|
{% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
|
|
|
|
<h2 id="{{ this_word }}">{{ this_word }}</h2>
|
|
|
|
<ul class="post-list">
|
|
|
|
{% for post in site.tags[this_word] %}{% if post.title != null %}
|
|
|
|
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %d, %Y" }}</time></span></a></li>
|
|
|
|
{% endif %}{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endunless %}{% endfor %}
|