summaryrefslogtreecommitdiff
path: root/categories.liquid
diff options
context:
space:
mode:
Diffstat (limited to 'categories.liquid')
-rw-r--r--categories.liquid21
1 files changed, 0 insertions, 21 deletions
diff --git a/categories.liquid b/categories.liquid
deleted file mode 100644
index 23b31a1..0000000
--- a/categories.liquid
+++ /dev/null
@@ -1,21 +0,0 @@
----
-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>