__init__ needs to be in the main package
[cascardo/ipsilon.git] / templates / master.html
1 <!DOCTYPE html>
2 <!--[if IE 8]><html class="ie8 login-pf"><![endif]-->
3 <!--[if gt IE 8]><!-->
4 <html class="login-pf">
5 <!--<![endif]-->
6   <head>
7     <title>{{ title }}</title>
8     <meta charset="UTF-8">
9     <meta name="viewport" content="width=device-width, initial-scale=1.0">
10     <link href="{{ basepath }}/ui/css/ipsilon.css" rel="stylesheet" media="screen, print">
11     {%- if heads %}
12       {%- for group, value in heads.items() %}
13         {%- for head in value %}
14     {{ head }}
15         {%- endfor %}
16       {%- endfor %}
17     {%- endif %}
18   </head>
19   <body>
20     <a href="{{ basepath }}/" id="badge" tabindex="-1">
21       <img src="{{ basepath }}/ui/img/logo.svg" alt="Ipsilon IdP" />
22     </a>
23     <div class="container">
24       <div class="row">
25         <div class="col-sm-12">
26           <div id="brand">
27             <img src="{{ basepath }}/ui/img/brand-lg.png" alt="Ipsilon">
28           </div>
29         </div>
30         {% block main %}
31         {% endblock %}
32       </div>
33     </div>
34   </body>
35 </html>