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 --- templates/index.html | 104 --------------------------------------------- templates/tags/list.html | 14 ------ templates/tags/single.html | 16 ------- 3 files changed, 134 deletions(-) delete mode 100644 templates/index.html delete mode 100644 templates/tags/list.html delete mode 100644 templates/tags/single.html (limited to 'templates') diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index c1cd4e8..0000000 --- a/templates/index.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - {% 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/templates/tags/list.html b/templates/tags/list.html deleted file mode 100644 index 9fdee7e..0000000 --- a/templates/tags/list.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "index.html" %} - -{% block title %}Tags{% endblock title%} - -{% block content %} -

Tags

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

Tag: #{{ term.name }}

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