From 7400f59386fd509308ac6d248f3f0434d7ceb3f9 Mon Sep 17 00:00:00 2001 From: "[esekyi]" <[sskert10@gmail.com]> Date: Sun, 25 Aug 2024 02:52:36 +0000 Subject: [PATCH] =?UTF-8?q?[Template=F0=9F=93=81]=20base=20file=20for=20la?= =?UTF-8?q?yout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/templates/base.html | 68 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 app/templates/base.html diff --git a/app/templates/base.html b/app/templates/base.html new file mode 100644 index 0000000..fcf1308 --- /dev/null +++ b/app/templates/base.html @@ -0,0 +1,68 @@ + + + + + + + + {% block title %} + SpiceShare{% endblock %} + + + + + + + +
+
+

SpiceShare

+ +
+
+ +
+ {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} +
+ {% for category, message in messages %} +
+ {{ message }} + +
+ {% endfor %} +
+ {% endif %} + {% endwith %} + + {% block content %} + {% endblock %} + +
+ + + + {% block scripts %} + + {% endblock %} + + + \ No newline at end of file