28 lines
730 B
HTML
28 lines
730 B
HTML
<!DOCTYPE html>
|
|
<html lang={i18next.language}>
|
|
|
|
<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" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<HeadHrefLangs />
|
|
<title>{title}</title>
|
|
<ViewTransitions />
|
|
|
|
<!-- Reset and normilize styles -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gardevoir" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
|
|
<body transition:animate="fade">
|
|
<header class="position-sticky py-1 py-lg-3">
|
|
<Navbar />
|
|
</header>
|
|
<main>
|
|
{% block content %} {% endblock %}
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|