From 89c01103ec0b684b6f871694f77fc49d0cb57f98 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 25 Jan 2022 18:00:16 -0800 Subject: [PATCH] Custom layout template for docs Adds plausible analytics, closes #389 Implements banner on latest page, closes #388 --- docs/_templates/layout.html | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 docs/_templates/layout.html diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 0000000..150edd0 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,39 @@ +{%- extends "!layout.html" %} + +{% block htmltitle %} +{{ super() }} + +{% endblock %} + +{% block footer %} +{{ super() }} + +{% endblock %}