From 336fd3f7566c7872c17b30f7cd150e1d16899205 Mon Sep 17 00:00:00 2001 From: sptaule Date: Mon, 24 Jan 2022 18:36:50 +0100 Subject: First commit --- templates/base.html | 173 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 173 insertions(+) create mode 100755 templates/base.html (limited to 'templates/base.html') diff --git a/templates/base.html b/templates/base.html new file mode 100755 index 0000000..b6c8760 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,173 @@ +{% import 'macros.html' as macros %} + + + + + + + + + + + {% if config.extra.favicon.webmanifest %} + + {% endif %} + {% if config.extra.favicon.safari_pinned_tab %} + + {% endif %} + {% if config.extra.favicon.favicon_16x16 %} + + {% endif %} + {% if config.extra.favicon.favicon_32x32 %} + + {% endif %} + {% if config.extra.favicon.apple_touch_icon %} + + {% endif %} + + {% if config.extra.galleria.enabled %} + + {% endif %} + + {% if config.extra.mapbox.enabled %} + + {% endif %} + + + + + + {% block user_custom_stylesheet %} + {% endblock %} + + + {% block title %} + {{ config.title }} + {% endblock title %} + + + {% if config.extra.katex.enabled %} + + + + + {% if config.extra.katex.auto_render %} + + {% endif %} + {% endif %} + + + + + +
+ {% block content %}{% endblock %} +
+ + + {% block pagination %} + {% if paginator.previous or paginator.next %} +
+
+ +
+
+ {% endif %} + {% endblock %} + + {% block comment %} + {% endblock %} + + + + {% if config.extra.galleria.enabled %} + + + + {% endif %} + {% if config.extra.mermaid.enabled %} + + {% endif %} + {% if config.extra.chart.enabled %} + + {% endif %} + + + {%- if lang != "en" -%} + {%- block other_lang_search_js -%} + {%- endblock -%} + {%- endif -%} + + + {% block custom_js %} + {% endblock %} + + {% block user_custom_js %} + {% endblock %} + + + -- cgit v1.2.3