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

<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>