hugo-geekblog/layouts/_default/baseof.html

32 lines
852 B
HTML
Raw Normal View History

2020-07-06 20:55:32 +02:00
<!DOCTYPE html>
2020-07-23 22:06:00 +02:00
<html itemscope itemtype="http://schema.org/WebPage" lang="{{ .Site.Language.Lang }}">
2020-07-06 20:55:32 +02:00
<head>
2020-07-22 23:41:46 +02:00
{{ partial "head/meta" . }}
<title>{{ if not (eq .Kind "home") }}{{ partial "title" . }} | {{ end }}{{ .Site.Title }}</title>
{{ 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" . }}
2020-07-06 20:55:32 +02:00
</head>
<body>
{{ partial "svg-icon-symbols" . }}
2021-11-23 16:53:25 +01:00
<div class="wrapper {{ if default false .Site.Params.GeekblogDarkModeDim }}dark-mode-dim{{ end }}">
2020-07-06 20:55:32 +02:00
{{ partial "site-header" . }}
<main class="gblog-page container">
{{ template "main" . }}
</main>
{{ partial "site-footer" . }}
</div>
{{ partial "foot" . }}
</body>
</html>