summaryrefslogtreecommitdiff
path: root/categories.html
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-10-25 22:14:41 -0600
committerHombreLaser <sebastian-440@live.com>2023-10-25 22:14:41 -0600
commitd591b9fd3fc200475a65034eae0ca1390384c1b8 (patch)
treecda35e13f9f02c5b65be28892eadee88a124a3cd /categories.html
parent4e0f57719601dd459c85d59eeaae4dde9c7161a2 (diff)
Add categories.html
Diffstat (limited to 'categories.html')
-rw-r--r--categories.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/categories.html b/categories.html
new file mode 100644
index 0000000..c63e0e0
--- /dev/null
+++ b/categories.html
@@ -0,0 +1,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>