mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 04:40:43 +00:00
32 lines
774 B
HTML
32 lines
774 B
HTML
<!DOCTYPE html>
|
|
<html itemscope itemtype="http://schema.org/WebPage" lang="{{ .Site.Language.Lang }}">
|
|
|
|
<head>
|
|
{{ partial "head/meta" . }}
|
|
<title>{{ if not (eq .Kind "home") }}{{ partial "title" . }} | {{ end }}{{ .Site.Title }}</title>
|
|
|
|
{{ partial "head/favicons" . }}
|
|
{{ partial "head/rel-me" . }}
|
|
{{ partial "head/microformats" . }}
|
|
{{ partial "head/others" . }}
|
|
{{ partial "head/schema.html" . }}
|
|
{{ partial "head/custom" . }}
|
|
</head>
|
|
|
|
<body>
|
|
{{ partial "svg-icon-symbols" . }}
|
|
|
|
<div class="wrapper">
|
|
{{ partial "site-header" . }}
|
|
|
|
<main class="gblog-page container">
|
|
{{ template "main" . }}
|
|
</main>
|
|
|
|
{{ partial "site-footer" . }}
|
|
</div>
|
|
|
|
{{ partial "foot" . }}
|
|
</body>
|
|
</html>
|