summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: d855b51054394dfa1a7cda6c863383bf8aa13ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "base" }}

<!DOCTYPE html>
<html>
  <head>
    <title>hatecomputers.club</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>
    <div id="content" class="container">
      {{ template "content" . }}
    </div>

    <script src="/static/js/script.js"></script>
  </body>
</html>

{{ end }}