From 366a2302d092c12f388f0eb8efb4faaa3acd3303 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sun, 18 Mar 2018 17:43:30 +0000 Subject: Initial commit --- app/templates/base.html | 74 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 app/templates/base.html (limited to 'app/templates/base.html') diff --git a/app/templates/base.html b/app/templates/base.html new file mode 100644 index 0000000..6e8c372 --- /dev/null +++ b/app/templates/base.html @@ -0,0 +1,74 @@ + + + + + + + + {% block title %}title{% endblock %} - {{ config.USER_APP_NAME }} + + + + + + + + {% block flash_messages %} + {%- with messages = get_flashed_messages(with_categories=true) -%} + {% if messages %} + + {% endif %} + {%- endwith %} + {% endblock %} + + {% block container %} +
+ {% block content %} + {% endblock %} +
+ {% endblock %} + -- cgit v1.2.3