2020-07-06 18:55:32 +00:00
|
|
|
<!DOCTYPE html>
|
2020-07-23 20:06:00 +00:00
|
|
|
<html itemscope itemtype="http://schema.org/WebPage" lang="{{ .Site.Language.Lang }}">
|
2020-07-06 18:55:32 +00:00
|
|
|
|
|
|
|
<head>
|
2020-07-22 21:41:46 +00:00
|
|
|
{{ partial "head/meta" . }}
|
|
|
|
<title>{{ if not (eq .Kind "home") }}{{ partial "title" . }} | {{ end }}{{ .Site.Title }}</title>
|
|
|
|
|
|
|
|
{{ partial "head/favicons" . }}
|
2020-07-23 08:00:18 +00:00
|
|
|
{{ partial "head/rel-me" . }}
|
2020-07-23 19:27:11 +00:00
|
|
|
{{ partial "head/microformats" . }}
|
2020-07-22 21:41:46 +00:00
|
|
|
{{ partial "head/others" . }}
|
2020-07-24 20:25:04 +00:00
|
|
|
{{ partial "head/schema.html" . }}
|
2020-07-06 18:55:32 +00:00
|
|
|
</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>
|