aboutsummaryrefslogtreecommitdiff
path: root/templates/tags
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tags')
-rw-r--r--templates/tags/list.html12
-rw-r--r--templates/tags/single.html14
2 files changed, 0 insertions, 26 deletions
diff --git a/templates/tags/list.html b/templates/tags/list.html
deleted file mode 100644
index b7f904a..0000000
--- a/templates/tags/list.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-<h1>Tags</h1>
-<ul>
- {% for term in terms %}
- <li>
- <a href="{{ term.permalink }}">{{ term.name }}</a> ({{ term.pages | length }} posts)
- </li>
- {% endfor %}
-</ul>
-{% endblock content %}
diff --git a/templates/tags/single.html b/templates/tags/single.html
deleted file mode 100644
index 31432e4..0000000
--- a/templates/tags/single.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-<h1>#{{ term.name }}</h1>
-<section>
-<ul class="post-list">
-{% for page in term.pages %}
- <li>
- <a href="{{ page.permalink }}">{{ page.title }}</a>
- <span class="post-date">{{ page.date | date(format="%d %h %Y")}}</span>
- </li>
-{% endfor %}
-</ul>
-{% endblock content %}