32 lines
1.4 KiB
HTML
32 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="h-full bg-gray-50">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{block "title" .}}Admin{{end}}</title>
|
|
<link rel="stylesheet" href="/static/css/output.css">
|
|
</head>
|
|
<body class="h-full">
|
|
<div class="min-h-full">
|
|
<nav class="bg-gray-900">
|
|
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
|
|
<div class="flex h-16 items-center justify-between">
|
|
<div class="flex items-center gap-8">
|
|
<span class="text-white font-bold text-lg">Admin Panel</span>
|
|
<div class="flex gap-4">
|
|
<a href="/" class="text-gray-300 hover:text-white text-sm font-medium">Dashboard</a>
|
|
<a href="/users" class="text-gray-300 hover:text-white text-sm font-medium">Users</a>
|
|
<a href="/tickets" class="text-gray-300 hover:text-white text-sm font-medium">Tickets</a>
|
|
<a href="/repos" class="text-gray-300 hover:text-white text-sm font-medium">Repos</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main class="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
|
|
{{block "content" .}}{{end}}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|