12 lines
608 B
HTML
12 lines
608 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
{{ partial "favicon.html" . }}
|
|
<title>{{ if .IsHome }}home – {{ else }}{{ if .Page.Title }}{{ .Page.Title }} – {{ end }}{{ end }}{{ .Site.Title }} dot 🌐 </title>
|
|
{{ template "_internal/opengraph.html" . }}
|
|
|
|
{{ $sass := resources.Get "sass/main.sass" }}
|
|
{{ $style := $sass | resources.ToCSS }}
|
|
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
|
<script async src="https://umami.birdcat.cafe/script.js" data-website-id="92c2c9cb-d376-4819-8994-2fcc1f417b58"></script>
|
|
</head>
|
|
{{ template "_internal/twitter_cards.html" . }}
|