From 72eec2299707881e9e58660467e37b777b51a632 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 17 Apr 2023 19:59:34 +0200 Subject: Initial commit --- templates/base.html | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 templates/base.html (limited to 'templates/base.html') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..299e92a --- /dev/null +++ b/templates/base.html @@ -0,0 +1,39 @@ + + + + + + + + {%- include "favicon.html" ignore missing -%} + {%- block title %}{{ config.title }}{%- endblock %} + + {%- include "seo_tags.html" ignore missing -%} + + + {%- if config.generate_feed %} + {%- block rss -%} + + {% endblock -%} + {%- endif %} + + {%- include "style.html" ignore missing -%} + + {%- include "custom_head.html" ignore missing -%} + + + +
+ {%- include "header.html" ignore missing -%} +
+
+ {%- block main %}{%- endblock %} +
+ + + {%- include "custom_body.html" ignore missing -%} + + + -- cgit 1.4.1