This commit is contained in:
parent
c2eb1b0d95
commit
d172a0174a
1 changed files with 6 additions and 13 deletions
|
@ -1,16 +1,16 @@
|
||||||
---
|
---
|
||||||
import "../style.css";
|
import "../style.css"
|
||||||
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
title?: string;
|
title?: string
|
||||||
description?: string;
|
description?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
const { title } = Astro.props;
|
const { title } = Astro.props
|
||||||
|
|
||||||
const titleFull = title == null ? "swablab e.V." : title + " | swablab e.V.";
|
const titleFull = title == null ? "swablab e.V." : title + " | swablab e.V."
|
||||||
const description =
|
const description =
|
||||||
"swablab e.V. in Freudenstadt - die offene Werkstatt für alle ambitionierten Hobby-Schreiner, Bastler, Tüftler, Elektroniker und vieles mehr.";
|
"swablab e.V. in Freudenstadt - die offene Werkstatt für alle ambitionierten Hobby-Schreiner, Bastler, Tüftler, Elektroniker und vieles mehr."
|
||||||
---
|
---
|
||||||
|
|
||||||
<html lang="de-DE" class="scroll-smooth">
|
<html lang="de-DE" class="scroll-smooth">
|
||||||
|
@ -29,13 +29,6 @@ const description =
|
||||||
<title>{titleFull}</title>
|
<title>{titleFull}</title>
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||||
|
|
||||||
<script
|
|
||||||
is:inline
|
|
||||||
defer
|
|
||||||
data-domain="swablab.de"
|
|
||||||
src="https://analytics.swablab.de/js/plausible.outbound-links.js"
|
|
||||||
></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body class="min-h-screen flex flex-col">
|
<body class="min-h-screen flex flex-col">
|
||||||
<slot />
|
<slot />
|
||||||
|
|
Loading…
Add table
Reference in a new issue