comparison default/base/base.html @ 0:9a31d2c02f47

SàT templates, initial commit
author Goffi <goffi@goffi.org>
date Tue, 21 Feb 2017 20:31:01 +0100
parents
children b13a26d55c64
comparison
equal deleted inserted replaced
-1:000000000000 0:9a31d2c02f47
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8" />
5 <title>{% block title %}{{C.APP_NAME}}{% endblock %}</title>
6 {% if css_inline %}
7 <style type="text/css">
8 {{css_content}}
9 </style>
10 {% else %}
11 <link rel='stylesheet' type="text/css" href='static/style.css'>
12 {% endif %}
13 </head>
14 <body>
15 <div id="body">
16 {% block body %}
17 {% endblock body %}
18 </div>
19 <footer>{% block footer %}Powered by {{C.APP_NAME}}{% endblock %}</footer>
20 </body>
21 </html>