Files
Grasswren/layouts/_default/baseof.html
T

43 lines
1.6 KiB
HTML
Raw Normal View History

2026-07-11 14:54:56 -04:00
<!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>
2026-07-11 16:20:39 -04:00
<li><a {{ if eq .Lang "home" }}class='active'{{ end }} href='https://grasswren.net'>Home</a></li>
<li><a {{ if eq .Lang "blog" }}class='active'{{ end }} href='https://blog.grasswren.net'>Blog</a></li>
<li><a {{ if eq .Lang "birds" }}class='active'{{ end }} href='https://birds.grasswren.net'>Birds</a></li>
2026-07-11 14:54:56 -04:00
</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>