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

<div class="well">
    {% 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>