28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{{ title or 'App' }}</title>
|
|
<!-- Tailwind (CDN for demo; consider self-hosting for prod) -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body class="min-h-screen bg-slate-50 text-slate-900">
|
|
<header class="border-b bg-white">
|
|
<div class="max-w-5xl mx-auto p-4 flex items-center justify-between">
|
|
<a href="/" class="font-semibold">Filevine Demo</a>
|
|
<nav class="space-x-4">
|
|
{% if session.uid %}
|
|
<a href="/dashboard" class="text-sm text-slate-600 hover:text-slate-900">Dashboard</a>
|
|
<a href="/logout" class="text-sm text-slate-600 hover:text-slate-900">Logout</a>
|
|
{% else %}
|
|
<a href="/login" class="text-sm text-slate-600 hover:text-slate-900">Login</a>
|
|
{% endif %}
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<main class="max-w-5xl mx-auto p-6">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html> |