summaryrefslogtreecommitdiff
path: root/categories.html
blob: 227f3332653c461831ca836df7a9e181cb40cfb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
layout: default
---

<div class="column">
    {% for tag in site.tags %}
        <h1>{{ tag[0] }}</h1>
        <ul>
        {% for post in tag[1] %}
	    <li><a href="{{ site.baseurl}}{{ post.url }}">{{ post.date | date: "%b %-d" }} - {{ post.title }}</a></li>  
            {% endfor %}
        </ul>
	{% endfor %}
</div>