summaryrefslogtreecommitdiff
path: root/templates/categories/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/categories/single.html')
-rw-r--r--templates/categories/single.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/templates/categories/single.html b/templates/categories/single.html
deleted file mode 100644
index b02797e..0000000
--- a/templates/categories/single.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}
-<title>{{ term.name }} | {{ config.title }}</title>
-{% endblock %}
-
-{% block content %}
-<p class="archive_title">[Category: {{ term.name }}]</p>
-
-{% for page in term.pages %}
-<p>
- <div class="date">
- {{ page.date }}
- </div>
- <div class="archive_title">
- <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
- </div>
-</p>
-{% endfor %}
-
-{% endblock content %}