templates/base.tmpl (view raw)
1<!DOCTYPE html>
2<html lang="en">
3
4<head>
5 <meta charset="UTF-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>{{block "title" .}}{{end}}WellBinge</title>
8
9 <link rel="icon" type="image/png" href="/static/favicon/favicon-48x48.png" sizes="48x48" />
10 <link rel="icon" type="image/svg+xml" href="/static/favicon/favicon.svg" />
11 <link rel="shortcut icon" href="/static/favicon/favicon.ico" />
12 <link rel="apple-touch-icon" sizes="180x180" href="/static/favicon/apple-touch-icon.png" />
13 <meta name="apple-mobile-web-app-title" content="WellBinge" />
14 <link rel="manifest" href="/static/favicon/site.webmanifest" />
15
16 <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
17 <link rel="stylesheet" href="/static/style.css">
18</head>
19
20<body>
21 {{block "content" .}}
22 <h1>Base template</h1>
23 {{end}}
24</body>
25
26</html>