1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-07-06 06:57:56 +00:00
now-playing/layouts/_default/baseof.html
2019-11-28 02:55:00 +01:00

19 lines
626 B
HTML

<!doctype html>
<html lang="{{ $.Site.Language.Lang }}">
{{ partial "head" . }}
<body class="sans-serif">
{{ block "header" . }}{{ partial "header" . }}{{end}}
{{ block "main" . }}{{ end }}
{{ block "footer" . }}{{ partial "footer" . }}{{end}}
{{ $mobilemenu := resources.Get "js/menu.js" }}
{{ $randomizer := resources.Get "js/random.js" }}
{{ $js := slice $mobilemenu $randomizer | resources.Concat "js/bundle.js" }}
{{ $secureJS := $js | resources.Fingerprint "sha512" }}
<script src="{{ $secureJS.Permalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script>
</body>
</html>