Change many lines

This commit is contained in:
Luca Bosin
2023-08-17 09:41:41 +02:00
parent 5e99dc4aa2
commit ba42d6958a
36 changed files with 1251 additions and 312 deletions

View File

@ -0,0 +1,20 @@
<script>
import Icon from "./Icon.svelte";
export let title = 'Galerie';
export let description = '';
/** @type {string | undefined} */
export let back = undefined;
</script>
<header>
<section class="title">
{#if back}
<a href={back}>
<Icon name="arrow-left" />
</a>
{/if}
<h1>{title}</h1>
<p>{description}</p>
</section>
</header>