1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-07-06 07:37:57 +00:00
now-playing/layouts/_default/baseof.html

19 lines
626 B
HTML
Raw Normal View History

2019-11-27 02:56:03 +00:00
<!doctype html>
<html lang="{{ $.Site.Language.Lang }}">
{{ partial "head" . }}
<body class="sans-serif">
2019-11-27 17:06:26 +00:00
{{ block "header" . }}{{ partial "header" . }}{{end}}
2019-11-27 02:56:03 +00:00
{{ block "main" . }}{{ end }}
{{ block "footer" . }}{{ partial "footer" . }}{{end}}
2019-11-28 01:05:31 +00:00
{{ $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>
2019-11-27 02:56:03 +00:00
</body>
</html>