apps/cellar/templates/base.html 1.1 K raw
1
{{define "base.html"}}<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>{{block "title" .}}Cellar{{end}}</title>
7
  <link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
8
  <link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
9
  <link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
10
  <link rel="manifest" href="/static/site.webmanifest">
11
  <link rel="icon" href="/static/favicon.ico">
12
  <meta property="og:title" content="Cellar">
13
  <meta property="og:image" content="/static/og.png">
14
  <meta property="og:type" content="website">
15
  <meta name="theme-color" content="#121113" />
16
  <link rel="stylesheet" href="/assets/darkmatter.css">
17
  <link rel="stylesheet" href="/static/styles.css">
18
  <link rel="alternate" type="application/rss+xml" title="Cellar RSS" href="/feed.xml">
19
</head>
20
<body>
21
  <header class="header">
22
    <a href="/" class="logo">cellar</a>
23
    {{block "nav" .}}{{end}}
24
  </header>
25
  <main>
26
    {{block "content" .}}{{end}}
27
  </main>
28
</body>
29
</html>{{end}}