From 5de7de4e64cb20183ebfe86e16578f4abd62a23e Mon Sep 17 00:00:00 2001
From: Alan Pearce
Date: Sat, 14 Nov 2020 21:17:02 +0100
Subject: Port theme to zola template
---
templates/tags/list.html | 18 ++++++++++++++++++
templates/tags/single.html | 25 +++++++++++++++++++++++++
2 files changed, 43 insertions(+)
create mode 100644 templates/tags/list.html
create mode 100644 templates/tags/single.html
(limited to 'templates/tags')
diff --git a/templates/tags/list.html b/templates/tags/list.html
new file mode 100644
index 0000000..ee60c39
--- /dev/null
+++ b/templates/tags/list.html
@@ -0,0 +1,18 @@
+{% 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
new file mode 100644
index 0000000..25dde54
--- /dev/null
+++ b/templates/tags/single.html
@@ -0,0 +1,25 @@
+{% 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 }}
+
+
+ {%- for page in term.pages %}
+ -
+
+ {{ page.title }}
+
+ {%- endfor %}
+
+
+
+{% endblock %}
--
cgit 1.4.1