webapp/src/main.astro

34 lines
864 B
Plaintext
Raw Normal View History

2022-09-09 11:53:35 +00:00
---
import './styles/app.scss'
import { Seo } from "astro-seo-meta"
2023-02-17 09:21:02 +00:00
const ln = Astro.url.searchParams.get('lng') || 'ru'
const { protocol, host } = Astro.url
const title = ln === 'ru' ? 'Дискурс' : 'Discours'
const imageUrl = Astro.props.imageUrl ?? `${protocol}${host}/public/bonfire.png`
2023-02-17 09:21:02 +00:00
const description = ln === 'ru' ? 'Горизонтальная платформа коллаборативной журналистики' : 'Horizontal collaborative journalistic platform'
2022-09-09 11:53:35 +00:00
---
2023-02-17 09:21:02 +00:00
<html>
2022-09-22 09:37:49 +00:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<Seo
title={title}
icon="favicon.png"
facebook={{
image: imageUrl,
type: "website",
}}
twitter={{
image: imageUrl,
card: description,
}}
/>
2022-09-22 09:37:49 +00:00
</head>
<body>
<slot />
</body>
</html>
2022-09-23 18:27:05 +00:00