summaryrefslogtreecommitdiff
path: root/template/templates/base.html
blob: 30a9c53eaf24a5fb9825ab4053557c1ff7e3b42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "base" }}
<!DOCTYPE html>
<html>
  <head>
    <title>{{ service_title }}</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
    <link rel="stylesheet" type="text/css" href="/static/css/styles.css">
  </head>
  <body data-theme="DARK">
    <div id="content" class="container">
      {{ template "content" . }}
    </div>
  </body>
</html>
{{ end }}