From 2e90f71d547dd9294a26861b66b6344bc49ab9af Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sat, 17 Dec 2022 22:07:08 +0100 Subject: theme: change to after-dark --- overlays/hyde/templates/index.html | 104 +++++++++++++++++++++++++++++++ overlays/hyde/templates/tags/list.html | 14 +++++ overlays/hyde/templates/tags/single.html | 16 +++++ 3 files changed, 134 insertions(+) create mode 100644 overlays/hyde/templates/index.html create mode 100644 overlays/hyde/templates/tags/list.html create mode 100644 overlays/hyde/templates/tags/single.html (limited to 'overlays') diff --git a/overlays/hyde/templates/index.html b/overlays/hyde/templates/index.html new file mode 100644 index 0000000..c1cd4e8 --- /dev/null +++ b/overlays/hyde/templates/index.html @@ -0,0 +1,104 @@ + + + + + + + + + + + + + {% block title %}{{ config.title }}{% endblock title %} + + + + + + + + {% if config.generate_feed %} + + {% endif %} + + {% block extra_head %} + {% endblock extra_head %} + + + + {% block sidebar %} + + {% endblock sidebar %} + + +
+ + {% block content %} +
+ + {% for page in section.pages %} + +
+

+ + {{ page.title }} + +

+ + + + + {% if page.taxonomies.tags %} + {% for tag in page.taxonomies.tags %} + #{{ tag }} + {% endfor %} + {% endif %} + + +
+ {% endfor %} +
+ {% endblock content %} +
+ + +
+
+
+ + + + + + + + diff --git a/overlays/hyde/templates/tags/list.html b/overlays/hyde/templates/tags/list.html new file mode 100644 index 0000000..9fdee7e --- /dev/null +++ b/overlays/hyde/templates/tags/list.html @@ -0,0 +1,14 @@ +{% extends "index.html" %} + +{% block title %}Tags{% endblock title%} + +{% block content %} +

Tags

+ +{% endblock content %} diff --git a/overlays/hyde/templates/tags/single.html b/overlays/hyde/templates/tags/single.html new file mode 100644 index 0000000..4062e4a --- /dev/null +++ b/overlays/hyde/templates/tags/single.html @@ -0,0 +1,16 @@ +{% extends "index.html" %} + +{% block title %}#{{ term.name }}{% endblock title%} + +{% block content %} +

Tag: #{{ term.name }}

+ + + +{% endblock content %} -- cgit v1.2.3