From be772f40c42711de54a3331db2781b1511acba9d Mon Sep 17 00:00:00 2001 From: garhve Date: Mon, 2 Jan 2023 06:02:01 +0800 Subject: change to zola --- templates/tags/list.html | 18 ++++++++++++++++++ templates/tags/single.html | 21 +++++++++++++++++++++ 2 files changed, 39 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..2b5a16c --- /dev/null +++ b/templates/tags/list.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block title %} +Tags +{% endblock %} + +{% block content %} +

[Tags]

+ + +{% endblock content %} \ No newline at end of file diff --git a/templates/tags/single.html b/templates/tags/single.html new file mode 100644 index 0000000..0549304 --- /dev/null +++ b/templates/tags/single.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} + +{% block title %} +{{ term.name }} | {{ config.title }} +{% endblock %} + +{% block content %} +

[Tag: {{ term.name }}]

+ +{% for page in term.pages %} +

+

+ {{ page.date }} +
+
+ {{ page.title }} +
+

+{% endfor %} + +{% endblock content %} \ No newline at end of file -- cgit v1.2.3-70-g09d2