23 lines
827 B
HTML
23 lines
827 B
HTML
<!doctype html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{{ request.app.title }}{% block title %}{% endblock %}</title>
|
|
|
|
<!-- Tailwind via CDN (fine for dev/small apps; switch to compiled later if you want) -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
<!-- HTMX: lets you call endpoints and swap HTML fragments, no custom JS needed -->
|
|
<script src="https://unpkg.com/htmx.org@2.0.3"></script>
|
|
</head>
|
|
<body class="bg-slate-900 text-slate-100">
|
|
<div class="max-w-3xl mx-auto p-6 bg-slate-800 rounded-lg shadow-md">
|
|
<h1 class="text-2xl font-bold mb-4 text-white">X1 Carbon Connection</h1>
|
|
{% block connect %}{% endblock %}
|
|
<br>
|
|
{% block status %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|