You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
770 B
33 lines
770 B
<!DOCTYPE html>
|
|
<html lang="{{ $.Site.LanguageCode | default " en" }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body class="{{ .Kind }} {{ anchorize .URL }} {{ .Section }}">
|
|
|
|
{{ block "header" . }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
<main>
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</main>
|
|
|
|
{{ block "footer.html" . }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|
|
|
|
|
|
{{ $base := resources.Get "script/base.js" }}
|
|
{{ $subscription := resources.Get "script/subscription.js" }}
|
|
{{ $shuffle := resources.Get "script/shuffle.js" }}
|
|
{{ $map := resources.Get "script/good-map.js" }}
|
|
|
|
{{ $js := slice $base $subscription $shuffle $map | resources.Concat "script/main.js" }}
|
|
<script src="{{ $js.Permalink }}"></script>
|
|
{{ block "scripts" . }}
|
|
<!-- No extra scripts -->
|
|
{{ end }}
|
|
</body>
|
|
|
|
</html>
|
|
|