elnafo-radio/crates/frontend/templates/base.html

18 lines
748 B
HTML
Raw Permalink Normal View History

2024-09-26 01:05:18 +05:00
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8">
<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">
<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>
<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>