huabu/templates/base.html

24 lines
729 B
HTML
Raw Normal View History

2026-02-07 00:17:23 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NoirFlow Monolith</title>
<!-- HTMX -->
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
<!-- Alpine.js -->
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@500;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body class="bg-noir">
<div class="app-container">
{% block content %}{% endblock %}
</div>
</body>
</html>