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

59 lines
1.0 KiB
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 data-translate="title">{title}</title>
2023-03-27 19:17:35 +02:00
<meta
name="description"
content="Share₂Fedi is a share page for Mastodon, Misskey, Friendica, and others. Type in your post text and the instance URL and click Publish!"
data-translate="metaDescription"
data-translate-attribute="content"
2023-03-27 19:17:35 +02:00
/>
<link
rel="canonical"
href={Astro.url}
/>
<link
rel="icon"
href="/favicon.ico"
sizes="32x32"
2023-03-27 19:17:35 +02:00
/>
<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"
2023-08-26 15:38:13 +02:00
content={Astro.generator}
2023-03-27 19:17:35 +02:00
/>
</head>
<body>
<slot />
</body>
</html>