aboutsummaryrefslogtreecommitdiffhomepage
path: root/overlays/hyde/templates/tags
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2022-12-17 22:07:08 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2022-12-17 22:07:08 +0100
commit2e90f71d547dd9294a26861b66b6344bc49ab9af (patch)
tree9eb16ba99bf2d526253c02219b2dfd296a076973 /overlays/hyde/templates/tags
parentda9d8fa516bf309e8cf6005cae152689b8a20342 (diff)
downloadblog-2e90f71d547dd9294a26861b66b6344bc49ab9af.tar.gz
blog-2e90f71d547dd9294a26861b66b6344bc49ab9af.zip
theme: change to after-dark
Diffstat (limited to 'overlays/hyde/templates/tags')
-rw-r--r--overlays/hyde/templates/tags/list.html14
-rw-r--r--overlays/hyde/templates/tags/single.html16
2 files changed, 30 insertions, 0 deletions
diff --git a/overlays/hyde/templates/tags/list.html b/overlays/hyde/templates/tags/list.html
new file mode 100644
index 0000000..9fdee7e
--- /dev/null
+++ b/overlays/hyde/templates/tags/list.html
@@ -0,0 +1,14 @@
+{% extends "index.html" %}
+
+{% block title %}Tags{% endblock title%}
+
+{% block content %}
+<h1>Tags</h1>
+<ul>
+ {% for term in terms %}
+ <li>
+ <a href="{{ term.permalink }}">#{{ term.name }}</a>
+ </li>
+ {% endfor %}
+</ul>
+{% endblock content %}
diff --git a/overlays/hyde/templates/tags/single.html b/overlays/hyde/templates/tags/single.html
new file mode 100644
index 0000000..4062e4a
--- /dev/null
+++ b/overlays/hyde/templates/tags/single.html
@@ -0,0 +1,16 @@
+{% extends "index.html" %}
+
+{% block title %}#{{ term.name }}{% endblock title%}
+
+{% block content %}
+<h1>Tag: #{{ term.name }}</h1>
+
+<ul>
+ {% for page in term.pages %}
+ <li>
+ <a href="{{ page.permalink }}">{{ page.title }}</a>
+ </li>
+ {% endfor %}
+</ul>
+
+{% endblock content %}