File size: 2,010 Bytes
d787a09 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | <!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{% block title %}ParaPilot — Illinois Divorce Navigator{% endblock %}</title>
<meta name="description" content="ParaPilot: a grounded, cited 'legal GPS' for the Illinois divorce process. Legal information, not legal advice." />
<!-- Vendored offline: Tailwind (Play CDN, JIT) + htmx. No network required. -->
<script src="/static/vendor/tailwind.js"></script>
<script>
tailwind.config = {
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"],
serif: ["ui-serif", "Iowan Old Style", "Palatino Linotype", "Palatino", "Georgia", "serif"],
},
colors: {
brand: {
50: "#f0f3f8", 100: "#dde6f0", 200: "#bccddf", 300: "#93aece",
400: "#6385ad", 500: "#3f618f", 600: "#2f4a73", 700: "#26405f",
800: "#1f3350", 900: "#1a2a44",
},
},
},
},
};
</script>
<script src="/static/vendor/htmx.min.js" defer></script>
<!-- Inter (optional online nicety; system sans is the offline fallback). -->
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/static/css/app.css" />
<script src="/static/js/app.js"></script>
</head>
<body class="pp-bg min-h-screen bg-[#f7f3ea] text-[#1f2a44] dark:bg-[#12161f] dark:text-[#e9e3d6] antialiased">
{% include "partials/nav.html" %}
<main class="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8 py-8">
{% block content %}{% endblock %}
</main>
{% include "partials/footer.html" %}
{% include "partials/disclaimer_modal.html" %}
</body>
</html>
|