From e24fade685f82bbf7905e0c7425a9d92ac90768e Mon Sep 17 00:00:00 2001 From: long2ice Date: Mon, 5 Jul 2021 15:32:28 +0800 Subject: [PATCH] update examples --- examples/templates/base.html | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 examples/templates/base.html diff --git a/examples/templates/base.html b/examples/templates/base.html new file mode 100644 index 0000000..7eb0547 --- /dev/null +++ b/examples/templates/base.html @@ -0,0 +1,40 @@ + + + + + + + + + + + + {% if request.app.favicon_url %} + + {% endif %} + + + + + {% block head %} + + + {% endblock %} + {{ title }} + +{% block outer_body %} + + {% block body %} + {% endblock %} + +{% endblock %} +