2024-08-20 19:17:05 +02:00
|
|
|
<script lang="ts">
|
2024-09-27 16:59:29 +02:00
|
|
|
import { type WebsiteOverview, md } from "../../utils";
|
2024-09-10 17:29:57 +02:00
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
websiteOverview,
|
|
|
|
|
isIndexPage
|
|
|
|
|
}: { websiteOverview: WebsiteOverview; isIndexPage: boolean } = $props();
|
2024-08-20 19:17:05 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<small>
|
2024-09-27 16:59:29 +02:00
|
|
|
{@html md(websiteOverview.footer.additional_text, false).replace(
|
2024-09-08 16:42:32 +02:00
|
|
|
"!!legal",
|
|
|
|
|
`<a href="${isIndexPage ? "./legal-information" : "../legal-information"}">Legal information</a>`
|
|
|
|
|
)}
|
2024-08-20 19:17:05 +02:00
|
|
|
</small>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|