pam: use a pam object method instead of pam module function
[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     <link href="{{ basepath }}/ui/css/styles.css" rel="stylesheet" media="screen, print">
12     {%- if heads %}
13       {%- for group, value in heads.items() %}
14         {%- for head in value %}
15     {{ head }}
16         {%- endfor %}
17       {%- endfor %}
18     {%- endif %}
19   </head>
20   <body>
21     <a href="{{ basepath }}/" id="badge" tabindex="-1">
22       <img src="{{ basepath }}/ui/img/logo.svg" alt="Ipsilon IdP" />
23     </a>
24     <div class="container">
25       <div class="row">
26         <div class="col-sm-12">
27           <div id="brand">
28             <img src="{{ basepath }}/ui/img/brand-lg.png" alt="Ipsilon">
29           </div>
30         </div>
31         {% block main %}
32         {% endblock %}
33       </div>
34     </div>
35   </body>
36 </html>