From 6256335ef802e2823ac0118c01c7fe31e38e7287 Mon Sep 17 00:00:00 2001 From: blendoit Date: Wed, 22 Jan 2020 18:17:38 -0800 Subject: Second commit. --- app/templates/base.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..5520493 --- /dev/null +++ b/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