summaryrefslogtreecommitdiff
path: root/categories.html
diff options
context:
space:
mode:
authorHombreLaser <buran@silosneeded.com>2024-05-05 19:51:24 -0600
committerHombreLaser <buran@silosneeded.com>2024-05-05 19:51:24 -0600
commit30c268fdabca62c7c4df6e8db7426666fc2be66a (patch)
tree8042bfd5d1ebee1ef492b9f1f8cac0e1c4c22438 /categories.html
parentbf2c057eece0e777036110526eb488b364dff108 (diff)
Change interface
Diffstat (limited to 'categories.html')
-rw-r--r--categories.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/categories.html b/categories.html
index c63e0e0..227f333 100644
--- a/categories.html
+++ b/categories.html
@@ -1,15 +1,14 @@
---
layout: default
-permalink: /categories
---
-<div class="well">
+<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 %}
+ {% endfor %}
</ul>
- {% endfor %}
+ {% endfor %}
</div>