From 2f1d0719faa0d955a82e87c0ea022f458e1c699f Mon Sep 17 00:00:00 2001 From: blendoit Date: Wed, 22 Jan 2020 18:15:52 -0800 Subject: First commit. --- website/app/templates/base.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 website/app/templates/base.html (limited to 'website/app/templates/base.html') diff --git a/website/app/templates/base.html b/website/app/templates/base.html new file mode 100644 index 0000000..5520493 --- /dev/null +++ b/website/app/templates/base.html @@ -0,0 +1,25 @@ + + + + + + {% if title %} + {{ title }} + {% else %} + Blendoit + {% endif %} + + + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} + {% endwith %} + + {% block content %}{% endblock %} + + -- cgit v1.2.3