43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>{{ .Title }}</title>
|
||
|
|
<meta name='viewport' content='width=device-width'>
|
||
|
|
<meta name='theme-color' content='#ab5aed'>
|
||
|
|
<meta name='og:type' content='website'>
|
||
|
|
<meta name='og:title' content='{{ .Title }}'>
|
||
|
|
<meta name='og:description' content='{{ .Description | markdownify | plainify }}'>
|
||
|
|
<meta name='og:url' content='{{ .Permalink }}'>
|
||
|
|
<meta name='og:image' content='/espurr.png'>
|
||
|
|
<link rel='preconnect' href='https://rsms.me'>
|
||
|
|
<link rel='preconnect' href='https://ajlee2006.github.io'>
|
||
|
|
<link rel='stylesheet' href='https://rsms.me/inter/inter.css'>
|
||
|
|
{{ $css := resources.Get "style.css" | resources.Minify | resources.Fingerprint }}
|
||
|
|
<link rel='stylesheet' href='{{ $css.RelPermalink }}'>
|
||
|
|
<link rel='icon' href='/espurr.png'>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<nav>
|
||
|
|
<div><a href='https://grasswren.net'>grasswren.net</a></div>
|
||
|
|
<ul>
|
||
|
|
<li><a {{ if .IsHome }}class='active'{{ end }} href='https://grasswren.net'>Home</a></li>
|
||
|
|
<li><a {{ if eq .Type "blog" }}class='active'{{ end }} href='https://blog.grasswren.net'>Blog</a></li>
|
||
|
|
<li><a {{ if eq .Type "birds" }}class='active'{{ end }} href='https://birds.grasswren.net'>Birds</a></li>
|
||
|
|
</ul>
|
||
|
|
</nav>
|
||
|
|
<header>
|
||
|
|
<div>
|
||
|
|
<h1>{{ .Title }} {{ if eq .Page.BundleType "branch" }}<span class='t'>[_lipu_pi_soweli_kili]</span>{{ end }}</h1>
|
||
|
|
<p>{{ .Description | markdownify }}</p>
|
||
|
|
</div>
|
||
|
|
<img src='/espurr.png' alt='Espurr'>
|
||
|
|
</header>
|
||
|
|
{{ block "main" . }}
|
||
|
|
{{ end }}
|
||
|
|
<footer>
|
||
|
|
<div><p>by <a href='mailto:lilac@grasswren.net'>Lilac</a> <small>(she/her)</small></p></div>
|
||
|
|
<div><p>ΘΔ ⸱ 🏳️⚧️</p></div>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|