summaryrefslogtreecommitdiff
path: root/categories.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'categories.liquid')
-rw-r--r--categories.liquid16
1 files changed, 11 insertions, 5 deletions
diff --git a/categories.liquid b/categories.liquid
index c4cccbf..23b31a1 100644
--- a/categories.liquid
+++ b/categories.liquid
@@ -6,10 +6,16 @@ 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 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>