1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul-website synced 2024-10-31 21:33:09 +00:00
strimertul-website/layouts/api/list.html

19 lines
449 B
HTML
Raw Normal View History

2023-02-18 00:04:20 +00:00
{{ define "main" }}
<main class="apidocs">
<nav>
2023-03-06 16:01:31 +00:00
<header>strimertül version</header>
2023-02-18 00:04:20 +00:00
<ul>
2023-03-06 16:01:31 +00:00
{{ range .Pages.Reverse }}
2023-02-18 00:04:20 +00:00
<li>
2023-03-06 16:01:31 +00:00
<a href="{{ .RelPermalink }}" class="monotitle">{{ .Title }}</a>
2023-02-18 00:04:20 +00:00
</li>
{{ end }}
</ul>
</nav>
<div class="doc">
2023-11-04 12:19:20 +00:00
<header><h1>API documentation</h1></header>
2023-02-18 00:04:20 +00:00
<section class="copy">{{ .Content }}</section>
</div>
</main>
{{ end }}