feat: add embed_base.html template shell

This commit is contained in:
2026-06-03 10:07:43 +02:00
parent 976d872eed
commit 627db45a56

View File

@@ -0,0 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/static/embed.css" />
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>