forked from swablab/website
23 lines
552 B
Text
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>
|