webapp/src/layouts/zine.astro

25 lines
525 B
Plaintext
Raw Normal View History

2022-09-09 11:53:35 +00:00
---
2022-09-22 09:37:49 +00:00
import { initRouter } from '../stores/router'
2022-09-09 11:53:35 +00:00
import '../styles/app.scss'
import { t } from '../utils/intl'
2022-09-22 09:37:49 +00:00
const { pathname, search, searchParams } = Astro.url
const lang = searchParams.get('lang')
initRouter(pathname, search)
2022-09-09 11:53:35 +00:00
---
2022-09-22 09:37:49 +00:00
<!DOCTYPE html>
<html lang={lang || 'ru'}>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/png" href="/favicon.png" />
<title>{t('Discours')}</title>
</head>
<body>
<slot />
</body>
</html>