36 lines
1.7 KiB
HTML
36 lines
1.7 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-white shadow">
|
|
<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">
|
|
<div class="flex items-center gap-2">
|
|
<span class="text-xl font-bold text-gray-900">Support</span>
|
|
<span class="inline-flex items-center rounded-full bg-blue-100 px-2 py-0.5 text-xs font-medium text-blue-700">Admin</span>
|
|
</div>
|
|
<div class="flex gap-4">
|
|
<a href="/" class="text-sm font-medium text-gray-700 hover:text-gray-900">Dashboard</a>
|
|
<a href="/users" class="text-sm font-medium text-gray-700 hover:text-gray-900">Users</a>
|
|
<a href="/tickets" class="text-sm font-medium text-gray-700 hover:text-gray-900">Tickets</a>
|
|
<a href="/repos" class="text-sm font-medium text-gray-700 hover:text-gray-900">Repos</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
{{template "flash" .}}
|
|
<main class="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
|
|
{{block "content" .}}{{end}}
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|