website/layouts/_default/baseof.html

24 lines
532 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2020-06-01 23:29:02 +00:00
{{ partialCached "css-global.html" . }}
<link rel="shortcut icon" href="/favicon.ico">
2020-06-01 22:11:20 +00:00
<title>{{ .Site.Title }} {{ block "title" . }} {{ with .Title }} | {{ . }} {{ end }} {{ end }}</title>
</head>
<body>
{{ partial "navbar.html" . }}
<main>
{{ block "main" . }} {{ end }}
</main>
{{ partial "footer.html" . }}
2020-06-01 23:29:02 +00:00
{{ partial "js-global.html" . }}
</body>
</html>