From c42501f8dae5fac685b4512d504fe3b8679d3b53 Mon Sep 17 00:00:00 2001 From: neingeist Date: Sat, 4 Dec 2021 02:30:58 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20switch=20to=20bootstrap-flask=20?= =?UTF-8?q?/=20bootstrap=204?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/bootstrap/base.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 templates/bootstrap/base.html diff --git a/templates/bootstrap/base.html b/templates/bootstrap/base.html new file mode 100644 index 0000000..4b01753 --- /dev/null +++ b/templates/bootstrap/base.html @@ -0,0 +1,26 @@ + + + + {% block head %} + + + + + {% block styles %} + + {{ bootstrap.load_css() }} + {% endblock %} + + Your page title + {% endblock %} + + + + {% block content %}{% endblock %} + + {% block scripts %} + + {{ bootstrap.load_js() }} + {% endblock %} + +