elnafo-radio/crates/frontend/templates/base.html
L-Nafaryus 71ff2ad34a
Some checks failed
nix-build-publish / check (push) Failing after 3m49s
fix: client appearance [#1]
2024-10-10 22:14:08 +05:00

18 lines
748 B
HTML

<!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">
<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">
</head>
<body class="h-full text-zinc-200 font-sans">
<div id="{{ view }}" class="flex flex-col h-full"></div>
</body>
</html>