aboutsummaryrefslogtreecommitdiff
path: root/templates/layout.html
blob: 28cd2624aca9c74f6b479b08fee9d25c32793624 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>{{template "title"}}</title>
  <link rel="stylesheet" href="/static/css/bootstrap.min.css">
  <link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
  <div id="contents">
    {{template "body" .}}
  </div>
</body>
</html>