68 lines
1.4 KiB
Plaintext
68 lines
1.4 KiB
Plaintext
---
|
|
import PlanetView from '../components/PlanetView.astro';
|
|
import { getHighestWeightedLanguage } from '../lib/utils/langDriver';
|
|
|
|
interface Props {
|
|
title: string;
|
|
}
|
|
|
|
const { title } = Astro.props;
|
|
|
|
if(!Astro.cookies.has('language')) {
|
|
const locale = await getHighestWeightedLanguage(Astro.request.headers.get('accept-language'));
|
|
|
|
Astro.cookies.set('language', locale, {
|
|
path: "/",
|
|
maxAge: 60 * 60 * 24 * 365,
|
|
sameSite: "lax",
|
|
secure: true
|
|
});
|
|
}
|
|
---
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="description" content="Astro description" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="stylesheet" href="/css/markdown.css" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<slot />
|
|
<!-- <PlanetView /> -->
|
|
</body>
|
|
</html>
|
|
<style is:global>
|
|
:root {
|
|
--accent: 136, 58, 234;
|
|
--accent-light: 224, 204, 250;
|
|
--accent-dark: 49, 10, 101;
|
|
--accent-gradient: linear-gradient(
|
|
45deg,
|
|
rgb(var(--accent)),
|
|
rgb(var(--accent-light)) 30%,
|
|
white 60%
|
|
);
|
|
}
|
|
html {
|
|
font-family: system-ui, sans-serif;
|
|
background: #13151a;
|
|
background-size: 224px;
|
|
}
|
|
code {
|
|
font-family:
|
|
Menlo,
|
|
Monaco,
|
|
Lucida Console,
|
|
Liberation Mono,
|
|
DejaVu Sans Mono,
|
|
Bitstream Vera Sans Mono,
|
|
Courier New,
|
|
monospace;
|
|
}
|
|
</style>
|