From e0a989555b6bef9173088da9e0b980338a88ce0c Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Wed, 19 Jun 2024 14:44:10 +0200 Subject: Swiched the theme to bulma-css --- theme/bulma/templates/base.html | 71 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 theme/bulma/templates/base.html (limited to 'theme/bulma/templates/base.html') diff --git a/theme/bulma/templates/base.html b/theme/bulma/templates/base.html new file mode 100644 index 0000000..6b281d6 --- /dev/null +++ b/theme/bulma/templates/base.html @@ -0,0 +1,71 @@ + + + + {% block head %} + + + + {% 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 %} + + + + + {{ SITENAME }}{% block title %}{% endblock %} + + + +
+
+ {% include "partial/sidebar.html" %} + {% include "partial/nav.html" %} +
+
+ {% block content %} + {% endblock %} + {% include "partial/footer.html" %} +
+
+ + -- cgit v1.2.3