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