From 2c0e17cb977a1e8782799b337df8b1583d019906 Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Mon, 12 Oct 2015 22:36:01 +0200 Subject: bootstraping react --- src/web/templates/layout.html.orig | 149 +++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 src/web/templates/layout.html.orig (limited to 'src/web/templates/layout.html.orig') diff --git a/src/web/templates/layout.html.orig b/src/web/templates/layout.html.orig new file mode 100644 index 00000000..1abb0b68 --- /dev/null +++ b/src/web/templates/layout.html.orig @@ -0,0 +1,149 @@ + + + + {% block head %} + + + + + JARR{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %} + + + + + + + {% endblock %} + + + +
+ +
+ {% block messages %} + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
+ + {{ message }} +
+ {% endfor %} + {% endif %} + {% endwith %} + {% endblock %} +
+ + {% block content %}{% endblock %} + + + + + + + + -- cgit