From 5fa81500dcc07a853a01b0b0d813069467995807 Mon Sep 17 00:00:00 2001 From: Daniel Hader Date: Sat, 29 Aug 2026 13:06:16 -0500 Subject: work in progress css --- themes/simple/templates/base.html | 108 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 themes/simple/templates/base.html (limited to 'themes/simple/templates/base.html') diff --git a/themes/simple/templates/base.html b/themes/simple/templates/base.html new file mode 100644 index 0000000..f34054f --- /dev/null +++ b/themes/simple/templates/base.html @@ -0,0 +1,108 @@ + + + + {% block head %} + {% block title %}{{ SITENAME|striptags }}{% endblock title %} + + + + {% if SITESUBTITLE %} + + {% endif %} + {% if CSS_FILE %} + + {% endif %} + {% if STYLESHEET_URL %} + + {% endif %} + {% if FEED_ALL_ATOM %} + + {% endif %} + {% if FEED_ALL_RSS %} + + {% endif %} + {% if FEED_ATOM %} + + {% endif %} + {% if FEED_RSS %} + + {% endif %} + {% if CATEGORY_FEED_ATOM and category %} + + {% endif %} + {% if CATEGORY_FEED_RSS and category %} + + {% endif %} + {% if TAG_FEED_ATOM and tag %} + + {% endif %} + {% if TAG_FEED_RSS and tag %} + + {% endif %} + {% endblock head %} + + + + {% block body %} +
+ +
+ +
+ {% block content %} + {% endblock content %} +
+ +
+
+ {% endblock body %} + + -- cgit v1.2.3