website/layouts/_default/baseof.html

19 lines
501 B
HTML
Raw Normal View History

2020-09-14 16:24:02 +02:00
<!doctype html>
<html>
<head>
<title>{{ with .Title }} {{ . }} {{ end }}{{ .Site.Title }}</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{{ block "stylesheet" . }}{{ end }}
<link rel="icon" type="image/png" href="/favicon.png">
</head>
<body>
{{ partial "nav.html" . }}
{{ block "main" . }}{{ end }}
{{ partial "footer.html" . }}
</body>
</html>