toot-script-condivisione-su.../src/layouts/layout.astro

57 lines
933 B
Plaintext
Raw Normal View History

2023-03-27 19:17:35 +02:00
---
/*!
* © 2023 Nikita Karamov
* Licensed under AGPL v3 or later
*/
2023-03-27 19:22:41 +02:00
import "@styles/main.scss";
2023-03-27 19:17:35 +02:00
const { title } = Astro.props;
---
2023-08-26 15:24:31 +02:00
<!doctype html>
2023-03-27 19:17:35 +02:00
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>{title}</title>
<meta
name="description"
content="Share₂Fedi is a share page for Mastodon, Pleroma, Misskey, and others. Type in your post text and the instance URL and click Publish!"
/>
<link
rel="canonical"
href={Astro.url}
/>
<link
rel="icon"
href="/favicon.ico"
sizes="any"
/>
<link
rel="icon"
href="/icon.svg"
type="image/svg+xml"
/>
<link
rel="apple-touch-icon"
href="/apple-touch-icon.png"
/>
<link
rel="manifest"
href="/site.webmanifest"
/>
<meta
name="generator"
content="{Astro.generator}"
/>
</head>
<body>
<slot />
</body>
</html>