2022-07-20 15:42:01 +08:00
|
|
|
{{- range $k, $v := (partialCached "init.html" .) -}}
|
|
|
|
{{- $.Scratch.Set $k $v -}}
|
|
|
|
{{- end -}}
|
2022-05-21 17:47:26 +08:00
|
|
|
<!DOCTYPE html>
|
2022-06-08 14:51:30 +08:00
|
|
|
<html lang="{{ .Site.LanguageCode }}">
|
2022-05-22 19:40:41 +08:00
|
|
|
|
|
|
|
<head>
|
2022-05-31 21:50:35 +08:00
|
|
|
{{- partial "head.html" . }}
|
2022-06-07 18:16:40 +08:00
|
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
2022-05-22 19:40:41 +08:00
|
|
|
<noscript>
|
|
|
|
<link rel="stylesheet" href="/css/noscript.css">
|
|
|
|
</noscript>
|
|
|
|
</head>
|
|
|
|
|
2022-06-02 12:13:16 +08:00
|
|
|
<body itemscope itemtype="http://schema.org/WebPage" {{ if .Site.Params.motion.enable }} class="use-motion" {{ end }}>
|
2022-05-22 19:40:41 +08:00
|
|
|
<div class="headband"></div>
|
|
|
|
<main class="main">
|
|
|
|
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
|
|
|
|
<div class="header-inner">
|
2022-09-11 18:33:41 +08:00
|
|
|
{{- partialCached "header.html" . }}
|
2022-05-22 19:40:41 +08:00
|
|
|
</div>
|
|
|
|
<!-- Sidebar -->
|
2022-06-02 12:13:16 +08:00
|
|
|
{{- if ne .Site.Params.sidebar.display "remove" }}
|
2022-06-01 11:49:47 +08:00
|
|
|
{{- partial "sidebar.html" . }}
|
2022-05-22 19:40:41 +08:00
|
|
|
{{- end }}
|
|
|
|
</header>
|
|
|
|
<!-- Widgets -->
|
2022-06-01 14:26:52 +08:00
|
|
|
{{ partial "widgets.html" . }}
|
2022-06-07 18:16:40 +08:00
|
|
|
<div class="main-inner {{ block "main_inner_class" . }}{{ end }}">
|
2022-05-22 19:40:41 +08:00
|
|
|
<!-- Submenu,Content,Comment -->
|
2022-06-01 17:06:27 +08:00
|
|
|
{{- block "main" . }}{{- end }}
|
2022-06-05 16:14:17 +08:00
|
|
|
{{- if .IsPage }}
|
2022-07-20 15:42:01 +08:00
|
|
|
{{- partialCached "comments.html" . }}
|
2022-06-05 16:14:17 +08:00
|
|
|
{{- end }}
|
2022-05-22 19:40:41 +08:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
|
|
<div class="footer-inner">
|
2022-07-20 15:42:01 +08:00
|
|
|
{{- partialCached "footer.html" . }}
|
2022-05-22 19:40:41 +08:00
|
|
|
</div>
|
|
|
|
</footer>
|
2022-05-25 11:02:05 +08:00
|
|
|
|
2022-09-11 11:14:54 +08:00
|
|
|
{{- partial "scripts.html" . }}
|
2022-05-22 19:40:41 +08:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|