15 lines
521 B
HTML
15 lines
521 B
HTML
<!doctype html>
|
||
<html lang="en">
|
||
<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" | relURL }}">
|
||
</head>
|
||
<body>
|
||
{{ partial "nav.html" . }}
|
||
{{ block "main" . }}{{ end }}
|
||
{{ partial "footer.html" . }}
|
||
</body>
|
||
</html>
|