better header/footer template, add syntax highlighting

This commit is contained in:
Trevor Bentley
2023-01-11 02:39:24 +01:00
parent 4e436a268d
commit d5428f97b7
15 changed files with 438 additions and 51 deletions
+17
View File
@@ -0,0 +1,17 @@
<html>
<head>
{% block html_head -%}
<title>{{site_name}}</title>
{% block html_head_extra -%}
{% endblock html_head_extra -%}
{% endblock html_head -%}
</head>
<body style="font-family: monospace;">
{% block header -%}{% include "header.html" -%}{% endblock header -%}
{% block content %}{% endblock content %}
{% block footer -%}{% include "footer.html" -%}{% endblock footer -%}
</body>
</html>