hugo-geekblog/layouts/_default/baseof.html

42 lines
907 B
HTML
Raw Normal View History

2020-07-06 20:55:32 +02:00
<!DOCTYPE html>
<html
itemscope
itemtype="http://schema.org/WebPage"
lang="{{ .Site.Language.Lang }}"
class="color-toggle-hidden"
>
<head>
2020-07-22 23:41:46 +02:00
{{ partial "head/meta" . }}
<title>
2022-01-12 22:05:20 +01:00
{{ if not (eq .Kind "home") }}
{{ partial "title" . }}{{ printf " | " }}
{{ end }}{{ .Site.Title }}
</title>
2020-07-22 23:41:46 +02:00
{{ partial "head/favicons" . }}
2020-07-23 10:00:18 +02:00
{{ partial "head/rel-me" . }}
2020-07-23 21:27:11 +02:00
{{ partial "head/microformats" . }}
2020-07-22 23:41:46 +02:00
{{ partial "head/others" . }}
2020-07-24 22:25:04 +02:00
{{ partial "head/schema.html" . }}
{{ partial "head/custom" . }}
</head>
2020-07-06 20:55:32 +02:00
<body>
{{ partial "svg-sprites" . }}
2020-07-06 20:55:32 +02:00
<div
class="wrapper {{ if default false .Site.Params.GeekblogDarkModeDim }}dark-mode-dim{{ end }}"
>
{{ partial "site-header" . }}
<main class="gblog-page container">
{{ template "main" . }}
</main>
2020-07-06 20:55:32 +02:00
{{ partial "site-footer" . }}
2020-07-06 20:55:32 +02:00
</div>
</body>
2020-07-06 20:55:32 +02:00
</html>