From 6f5116dee64b700e25cba7560e398983755564fd Mon Sep 17 00:00:00 2001 From: Luca Chiricozzi Date: Sat, 10 Jan 2015 01:40:39 +0100 Subject: [PATCH] Unused templates removed --- templates/author.html | 5 ----- templates/tag.html | 5 ----- templates/tags.html | 21 --------------------- 3 files changed, 31 deletions(-) delete mode 100644 templates/author.html delete mode 100644 templates/tag.html delete mode 100644 templates/tags.html diff --git a/templates/author.html b/templates/author.html deleted file mode 100644 index f89da67..0000000 --- a/templates/author.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "index.html" %} -{% block title %}{{ author }}{% endblock %} -{% block description %}{% endblock %} - -{% include 'common_seo.html' %} diff --git a/templates/tag.html b/templates/tag.html deleted file mode 100644 index a22947e..0000000 --- a/templates/tag.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "index.html" %} -{% block title %}{{ SITENAME }} | {{ tag|capitalize }}{% endblock %} -{% block description %}{% endblock %} - -{% include 'common_seo.html' %} diff --git a/templates/tags.html b/templates/tags.html deleted file mode 100644 index b137cf9..0000000 --- a/templates/tags.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "base.html" %} -{% block title %}Tags{% endblock %} -{% block description %}{% endblock %} - -{% include 'common_seo.html' %} - -{% block content %} -
-

Tags

- {% for tag, articles in tags|sort %} -

{{ tag }} ({{ articles|count }})

- {% for article in articles %} - - {% endfor %} - {% endfor %} -
-{% endblock %}