<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/style.css">
<title>{{ .Title }} – {{ site.Title }}</title>
</head>
<body>
{{ partial "menu-control.html" . | safeHTML }}
<aside>
<section>
<nav aria-label="Table of contents">
<ol>
{{- $current := . }}
{{- range site.Root.Pages }}
{{- if eq $current . }}
<li><a class="current" href="{{ .Path }}">{{ .Title }}</a></li>
{{- else }}
<li><a href="{{ .Path }}">{{ .Title }}</a></li>
{{- end }}
{{- end }}
</ol>
</nav>
<footer>
<p>Built with <a href="https://sr.ht/~adnano/kiln">kiln</a>. <a href="https://git.sr.ht/~adnano/kiln-docs#contributing">Patches welcome</a>.</p>
</footer>
</section>
</aside>
<main>
<h1>{{ site.Title }}</h1>
<article>
<h1>{{ .Title }}</h1>
{{ .Content | safeHTML }}
<nav>
{{- with .Prev }}
<a class="prev" href="{{ .Path }}">← {{ .Title }}</a>
{{- end }}
{{- with .Next }}
<a class="next" href="{{ .Path }}">{{ .Title }} →</a>
{{- end }}
</nav>
</article>
</main>
</body>
</html>