2024-09-26 01:05:18 +05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="h-full">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2024-09-26 19:27:38 +05:00
|
|
|
<link rel="icon" type="image/svg+xml" sizes="16x16 32x32" href="/assets/logo.svg">
|
2024-10-10 22:14:08 +05:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
2024-09-26 19:27:38 +05:00
|
|
|
<title>{{ title }}</title>
|
|
|
|
{% for item in meta.as_deref().unwrap_or([]) %}
|
|
|
|
<meta name="{{ item.name }}" content="{{ item.content }}">
|
|
|
|
{% endfor %}
|
|
|
|
<script type="module" crossorigin src="/assets/index.js"></script>
|
|
|
|
<link rel="stylesheet" crossorigin href="/assets/index.css">
|
2024-09-26 01:05:18 +05:00
|
|
|
</head>
|
2024-09-26 19:27:38 +05:00
|
|
|
<body class="h-full text-zinc-200 font-sans">
|
2024-09-26 01:05:18 +05:00
|
|
|
<div id="{{ view }}" class="flex flex-col h-full"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|