2019-11-27 02:56:03 +00:00
|
|
|
<head>
|
|
|
|
|
2019-11-27 17:06:26 +00:00
|
|
|
<title>{{ .Title }} ∴ {{ $.Site.Title }}</title>
|
2019-11-27 02:56:03 +00:00
|
|
|
|
|
|
|
<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 }}">
|
|
|
|
|
|
|
|
|
2019-11-27 17:06:26 +00:00
|
|
|
<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">
|
|
|
|
<!-- 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" />
|
2019-11-27 02:56:03 +00:00
|
|
|
|
2019-11-27 17:06:26 +00:00
|
|
|
{{ $sass := resources.Get "/scss/style.scss" }}
|
2019-11-28 01:05:31 +00:00
|
|
|
{{ $style := $sass | resources.ToCSS | minify | fingerprint }}
|
2019-11-27 17:06:26 +00:00
|
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
2019-11-27 02:56:03 +00:00
|
|
|
</head>
|