17 lines
606 B
HTML
17 lines
606 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ $.Site.LanguageCode }}">
|
|
{{- partial "head.html" . -}}
|
|
<body a="{{ $.Site.Params.theme_config.appearance | default "auto" }}">
|
|
<main class="page-content" aria-label="Content">
|
|
<div class="w">
|
|
{{- block "main" . }}{{- end }}
|
|
</div>
|
|
</main>
|
|
</body>
|
|
{{- if .Params.custom_js -}}
|
|
{{- range .Params.custom_js -}}
|
|
{{ $js := resources.Get (print "js/" . ".js") }}
|
|
<script type="text/javascript" src="{{ $js.RelPermalink }}"></script>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</html>
|