summaryrefslogtreecommitdiff
path: root/templates/layout/base.html
blob: f041321e2c4c78197762926b7a79e5370f18bdc3 (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
36
37
38
39
40
{{define "base"}}
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>{{block "title" .}}SSO Password Manager{{end}}</title>
    <link rel="stylesheet" type="text/css" href="static/css/main.css">
    <link href="static/images/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon">
  </head>
  <body>
    <div class="wrapper">
      <header>
          <div class="container">
            <img src="static/images/nordunet.png" alt="NORDUnet Nordic Gateway for Research and Education">
          </div>
      </header>
      <div class="container flex-group">
        <nav>
        </nav>
       <div class="content flex-container">
        {{if .Flash }}
          <div class="column full ">
            <div class="alert alert-{{ .FlashClass }}">
            {{ .Flash }}
            </div>
          </div>
        {{ end }}
        {{block  "content" .}} {{ end }}
       </div>
      </div>
       <footer>
          <div class="container container-footer">
            <p class="footer-text">NORDUnet A/S | Kastruplundgade 22 | DK-2770 Kastrup | DENMARK | Phone +45 32 46 25 00 | Fax +45 45 76 23 66 | info@nordu.net</p>
          </div>
        </footer>
    </div>
  </body>
</html>
{{end}}