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

58 lines
2.4 KiB
HTML
Raw Normal View History

2019-11-27 02:56:03 +00:00
<!doctype html>
<html lang="{{ $.Site.Language.Lang }}">
2019-12-03 19:53:14 +00:00
<head>
{{ block "metaTitle" . }}
<title>{{ .Title }}</title>
{{ end }}
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<base href="{{ if getenv "CONTEXT" }}{{ cond (eq "production" (getenv "CONTEXT")) (getenv "URL") (getenv "DEPLOY_PRIME_URL") }}{{ else }}{{ $.Site.BaseURL }}{{ end }}">
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
<link rel="manifest" href="/favicons/site.webmanifest">
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#ff2749">
<meta name="msapplication-TileColor" content="#0e1848">
<meta name="theme-color" content="#0e1848">
{{ block "metaSocial" . }}
<!-- opengraph -->
<meta property="og:title" content="Now Playing ∴ Great music should be shared">
<meta property="og:description" content="Handpicked Albums by the Glitch Family">
<meta property="og:url" content="https://music.glitch.family">
<meta property="og:image" content="/favicons/android-chrome-512x512.png">
<meta property="og:image:height" content="512">
<meta property="og:image:width" content="512">
<!-- twitter card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Now Playing ∴ Great music should be shared" />
<meta name="twitter:description" content="Handpicked Albums by the Glitch Family" />
{{ end }}
{{ $sass := resources.Get "/scss/style.scss" }}
{{ $style := $sass | resources.ToCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
</head>
2019-11-27 02:56:03 +00:00
<body class="sans-serif">
2019-12-03 19:53:14 +00:00
{{ partial "header" . }}
2019-11-27 02:56:03 +00:00
{{ block "main" . }}{{ end }}
2019-12-03 19:53:14 +00:00
{{ partial "footer" . }}
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>