46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
{{- range $k, $v := (partialCached "init.html" .) -}}
|
|
{{- $.Scratch.Set $k $v -}}
|
|
{{- end -}}
|
|
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
|
|
<head>
|
|
{{- partial "head.html" . }}
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
|
<noscript>
|
|
<link rel="stylesheet" href="/css/noscript.css">
|
|
</noscript>
|
|
</head>
|
|
|
|
<body itemscope itemtype="http://schema.org/WebPage" {{ if .Site.Params.motion.enable }} class="use-motion" {{ end }}>
|
|
<div class="headband"></div>
|
|
<main class="main">
|
|
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
|
|
<div class="header-inner">
|
|
{{- partialCached "header.html" . }}
|
|
</div>
|
|
<!-- Sidebar -->
|
|
{{- if ne .Site.Params.sidebar.display "remove" }}
|
|
{{- partial "sidebar.html" . }}
|
|
{{- end }}
|
|
</header>
|
|
<!-- Widgets -->
|
|
{{ partial "widgets.html" . }}
|
|
<div class="main-inner {{ block "main_inner_class" . }}{{ end }}">
|
|
<!-- Submenu,Content,Comment -->
|
|
{{- block "main" . }}{{- end }}
|
|
{{- if .IsPage }}
|
|
{{- partialCached "comments.html" . }}
|
|
{{- end }}
|
|
</div>
|
|
</main>
|
|
<footer class="footer">
|
|
<div class="footer-inner">
|
|
{{- partialCached "footer.html" . }}
|
|
</div>
|
|
</footer>
|
|
|
|
{{- partial "scripts.html" . }}
|
|
</body>
|
|
|
|
</html> |