2023-03-14 15:22:52 +00:00
|
|
|
{{ define "admin_header" }}
|
|
|
|
<div class="py-10">
|
|
|
|
<header class="pb-4">
|
|
|
|
<div>
|
|
|
|
<h1 class="text-2xl font-bold leading-tight">Admin panel</h1>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<div class="mb-4">
|
|
|
|
<div class="">
|
|
|
|
<nav class="flex space-x-4" aria-label="Tabs">
|
2023-04-16 15:48:21 +00:00
|
|
|
<a href="/admin-panel" class="{{ if eq .adminHeaderPage "index" }}bg-gray-700 text-slate-300 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md
|
2023-03-14 15:22:52 +00:00
|
|
|
{{ else }} text-gray-400 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md {{ end }}">General</a>
|
2023-04-16 15:48:21 +00:00
|
|
|
<a href="/admin-panel/users" class="{{ if eq .adminHeaderPage "users" }}bg-gray-700 text-slate-300 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md
|
2023-03-14 15:22:52 +00:00
|
|
|
{{ else }} text-gray-400 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md {{ end }}" aria-current="page">Users</a>
|
2023-04-16 15:48:21 +00:00
|
|
|
<a href="/admin-panel/gists" class="{{ if eq .adminHeaderPage "gists" }}bg-gray-700 text-slate-300 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md
|
2023-03-14 15:22:52 +00:00
|
|
|
{{ else }} text-gray-400 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md {{ end }}" aria-current="page">Gists</a>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ end }}
|