19 lines
501 B
HTML
19 lines
501 B
HTML
|
<!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>
|