1
0
Fork 0
mirror of https://github.com/GuerillaStudio/now-playing synced 2024-09-18 20:34:53 +00:00
now-playing/layouts/partials/head.html
2019-11-27 18:06:26 +01:00

33 lines
1.7 KiB
HTML

<head>
<title>{{ .Title }} ∴ {{ $.Site.Title }}</title>
<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">
<!-- 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" />
{{ $sass := resources.Get "/scss/style.scss" }}
{{ $style := $sass | resources.ToCSS }}
<link rel="stylesheet" href="{{ $style.Permalink }}">
</head>