From 6385a5f78ce2ad7409811927b10fc2b62e427643 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 15 Nov 2020 13:14:37 +0100 Subject: Extract theme from templates --- templates/tags/list.html | 18 ------------------ templates/tags/single.html | 25 ------------------------- 2 files changed, 43 deletions(-) delete mode 100644 templates/tags/list.html delete mode 100644 templates/tags/single.html (limited to 'templates/tags') diff --git a/templates/tags/list.html b/templates/tags/list.html deleted file mode 100644 index ee60c39..0000000 --- a/templates/tags/list.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ taxonomy.name | capitalize }}{% endblock %} - -{% block main %} -
-

{{ taxonomy.name | capitalize }}

-
- -
-
-{% endblock %} diff --git a/templates/tags/single.html b/templates/tags/single.html deleted file mode 100644 index 25dde54..0000000 --- a/templates/tags/single.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends "base.html" %} - -{% block rss %} - {% set rss_path = "tags/" ~ term.name ~ "/atom.xml" %} - - -{% endblock %} - -{% block title %}{{ taxonomy.name | capitalize }}: {{ term.name }} | {{ config.title }}{% endblock %} - -{% block main %} -
-

{{ taxonomy.name | capitalize }}: {{ term.name }}

-
- -
-
-{% endblock %} -- cgit 1.4.1