Starter Projekt angefangen, etwas aufzubohren und ein paar grundlegend benötigte Collections, Teheming-Styles und Komponenten hinzugefügt. (WIP)

This commit is contained in:
2022-05-24 16:44:55 +02:00
parent f4b6bb17ca
commit 47fdee2396
75 changed files with 2086 additions and 1234 deletions

View File

@@ -0,0 +1,30 @@
<script lang="ts">
import { link } from "svelte-routing"
import { generalInfo } from "../../store"
import Navigation from "./Navigation.svelte"
import Image from "./Image.svelte"
</script>
<header>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="header-content">
<a href="/" use:link>
<Image
file="{$generalInfo?.media?.brand}"
alt="{$generalInfo?.meta?.metaTitle}"
cssClass="brand"
/>
</a>
<div class="header-content-right">
<Navigation />
</div>
</div>
</div>
</div>
</div>
</header>