add content pages & md suport

This commit is contained in:
2024-07-10 23:04:18 +02:00
parent bf0da398b9
commit 58c3a00e84
24 changed files with 1422 additions and 1015 deletions
+26 -24
View File
@@ -1,32 +1,34 @@
<script>
import ImageLinkTile from "$lib/components/ImageLinkTile.svelte";
import mouse from "$lib/images/mouse.webp";
import drummachine from "$lib/images/drummachine.webp";
import scouts from "$lib/images/scouts.webp";
import console_image from "$lib/images/console.webp";
import mouse from "$lib/images/home/mouse.webp";
import drummachine from "$lib/images/home/drummachine.webp";
import scouts from "$lib/images/home/scouts.webp";
import console_image from "$lib/images/home/console.webp";
</script>
<ImageLinkTile src={console_image} href="">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Informatik
</h2>
</ImageLinkTile>
<main>
<ImageLinkTile src={console_image} href="/informatik">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Informatik
</h2>
</ImageLinkTile>
<ImageLinkTile src={scouts} href="https://pfadifrisco.ch/" target="_blank">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Pfadi
</h2>
</ImageLinkTile>
<ImageLinkTile src={scouts} href="https://pfadifrisco.ch/" target="_blank">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Pfadi
</h2>
</ImageLinkTile>
<ImageLinkTile src={mouse} href="">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Fotos
</h2>
</ImageLinkTile>
<ImageLinkTile src={mouse} href="/fotos">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Fotos
</h2>
</ImageLinkTile>
<ImageLinkTile src={drummachine} href="">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Musik
</h2>
</ImageLinkTile>
<ImageLinkTile src={drummachine} href="/musig">
<h2 class="text-3xl font-bold text-white hover:underline text-shadow-lg">
Musig
</h2>
</ImageLinkTile>
</main>