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">
|
2026-02-07 00:50:16 +08:00
|
|
|
<!-- Marked.js for Markdown rendering -->
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
2026-02-07 00:17:23 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body class="bg-noir">
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|