mirror of
https://git.sr.ht/~ashkeel/strimertul-website
synced 2024-10-31 21:33:09 +00:00
18 lines
449 B
HTML
18 lines
449 B
HTML
{{ define "main" }}
|
|
<main class="apidocs">
|
|
<nav>
|
|
<header>strimertül version</header>
|
|
<ul>
|
|
{{ range .Pages.Reverse }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}" class="monotitle">{{ .Title }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
<div class="doc">
|
|
<header><h1>API documentation</h1></header>
|
|
<section class="copy">{{ .Content }}</section>
|
|
</div>
|
|
</main>
|
|
{{ end }}
|