add: backlink, technical aspects, nav

Add "Wissen" to navigation, fix some smaller issues, add backlink to posts
This commit is contained in:
webfussel 2025-07-11 09:30:45 +02:00
parent 36a90bb057
commit a85d924e21
4 changed files with 31 additions and 13 deletions

View file

@ -6,7 +6,8 @@ const { data: post } = await useAsyncData(`wissen-${slug}`, () => {
</script>
<template>
<template v-if="post">
<ContentRenderer :value="post" :prose="false" class="Wissen flex-col gap-default content full"/>
</template>
<section class="Wissen content full flex-col gap-default">
<NuxtLink class="back" to="/wissen"><Icon name="uil:backward" />Zurück zur Übersicht</NuxtLink>
<ContentRenderer v-if="post" :value="post" :prose="false" class="flex-col gap-default"/>
</section>
</template>