1
0
Fork 0
forked from swablab/website
website/src/pages/docs.astro
2025-02-22 16:59:06 +00:00

23 lines
552 B
Text

---
import Section from "../components/Section.astro"
import { documents } from "../helper"
import Page from "../layouts/Page.astro"
---
<Page title="Offizielle Dokumente">
<Section title="Offizielle Dokumente" jumpId="docs">
<ul class="menu">
{
Object.keys(documents)
.sort()
.map((name) => (
<li>
<a href={documents[name]} class="justify-start">
<p class="font-bold">{name}</p>
</a>
</li>
))
}
</ul>
</Section>
</Page>