homepage/templates/_base.html
2024-02-25 13:20:06 +01:00

22 lines
No EOL
938 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>{{ title }} - Viyurz</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<meta property="og:title" content="{{ title }} - Viyurz">
<meta property="og:type" content="website">
<meta property="og:url" content="https://viyurz.fr">
<meta property="og:description" content="{% block description %}Home of Viyurz.{% endblock %}">
<meta property="og:image" content="https://viyurz.fr/assets/logo.jpg">
<link href="/assets/index.css" rel="stylesheet">
</head>
<body class="min-h-screen bg-background text-white">
{% include "_navbar" %}
<main class="flex flex-col items-center p-6">
{% block main %}{% endblock %}
</main>
</body>
</html>