aboutsummaryrefslogtreecommitdiffhomepage
path: root/overlays/hyde/templates/tags
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-01-04 19:53:13 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-01-04 19:53:13 +0100
commit12f52e2a1926a6365f310663236596bfb0e1fe4d (patch)
treee912cfc41cf5b526be37dbd57b5216fae79cfd30 /overlays/hyde/templates/tags
parent271298a9763515e1735abc5a68eff102c3d676c4 (diff)
downloadblog-12f52e2a1926a6365f310663236596bfb0e1fe4d.tar.gz
blog-12f52e2a1926a6365f310663236596bfb0e1fe4d.zip
remove themes
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, 0 insertions, 30 deletions
diff --git a/overlays/hyde/templates/tags/list.html b/overlays/hyde/templates/tags/list.html
deleted file mode 100644
index 9fdee7e..0000000
--- a/overlays/hyde/templates/tags/list.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{% 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
deleted file mode 100644
index 4062e4a..0000000
--- a/overlays/hyde/templates/tags/single.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% 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 %}