templates/base.tmpl (view raw)
1<!doctype html>
2{{ .Heading }}
3<html lang="en">
4
5<head>
6 <meta charset="utf-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8 {{block "meta" .}}{{end}}
9 <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text fill=%22white%22 y=%22.9em%22 font-size=%2290%22>🛠</text></svg>">
10 <link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
11</head>
12
13<body>
14 <main class="container" style="max-width: 35rem">
15 {{block "content" .}}
16 <h1>Base template</h1>
17 {{end}}
18 <hr>
19 <section>
20 <small>
21 <a href="https://github.com/birabittoh/gopipe" target="_blank">Source code</a>
22 </small>
23 <br />
24 <small>• YouTube is a trademark of Google LLC. This app is not affiliated with Google LLC.</small>
25 </section>
26 </main>
27 {{block "scripts" .}}{{end}}
28</body>
29
30</html>