2024-02-25 13:20:06 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
2024-07-02 16:21:57 +02:00
|
|
|
|
2024-02-25 13:20:06 +01:00
|
|
|
<head>
|
|
|
|
<title>{{ title }} - Viyurz</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-07-02 16:21:57 +02:00
|
|
|
|
|
|
|
<link rel="icon" type="image/png" href="/assets/favicon.png">
|
2024-02-25 13:20:06 +01:00
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
|
2024-07-02 16:21:57 +02:00
|
|
|
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="/assets/favicon-180x180.png">
|
|
|
|
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:title" content="{{ title }} - Viyurz" />
|
|
|
|
<meta property="og:description" content="{% block description %}Viyurz's website.{% endblock %}" />
|
|
|
|
<meta property="og:url" content="https://viyurz.fr/" />
|
|
|
|
<meta property="og:image" content="https://viyurz.fr/assets/logo.jpg" />
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/assets/index.css">
|
|
|
|
<link rel="stylesheet" href="/assets/fa/all.min.css">
|
|
|
|
<link rel="preload" href="/assets/index.css" as="style">
|
|
|
|
<link rel="preload" href="/assets/fa/all.min.css" as="style">
|
2024-02-25 13:20:06 +01:00
|
|
|
</head>
|
2024-07-02 16:21:57 +02:00
|
|
|
|
|
|
|
<body class="flex flex-col min-h-screen bg-base dark:bg-base-dark text-sm text-text dark:text-text-dark">
|
|
|
|
{% include "_navbar" %}
|
|
|
|
<main class="mb-auto flex flex-col items-center p-3 md:p-6">
|
|
|
|
{% block main %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
{% include "_footer" %}
|
2024-02-25 13:20:06 +01:00
|
|
|
</body>
|
2024-07-02 16:21:57 +02:00
|
|
|
|
2024-02-25 13:20:06 +01:00
|
|
|
</html>
|