summaryrefslogtreecommitdiff
path: root/categories.liquid
blob: 23b31a1d5c66d51fece07476c4bf9fea04f64ed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
permalink: /categories.html
---

<div class="column">
    {% for tag in site.tags %}
        <h1>{{ tag[0] }}</h1>
        {% for post in tag[1] %}
	    <div class="columns">
		<div class="column archive-date is-3">
		    {% capture month%}{{ post.date |  date: "%b" }}{% endcapture %}
		    {{ site.data[site.active_lang].strings.date[month]}} {{ post.date | date: "%e, %Y" }}
		</div>
		<div class="column pull-left">
		    <a href="{{ site.baseurl}}{{ post.url }}">{{ post.title }}</a>
		</div>
	    </div>
        {% endfor %}
    {% endfor %}
</div>