mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 13:02:39 +00:00
23 lines
1.3 KiB
HTML
23 lines
1.3 KiB
HTML
|
{{ 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">
|
||
|
<a href="/admin" 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
|
||
|
{{ else }} text-gray-400 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md {{ end }}">General</a>
|
||
|
<a href="/admin/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
|
||
|
{{ else }} text-gray-400 hover:text-slate-300 px-3 py-2 font-medium text-sm rounded-md {{ end }}" aria-current="page">Users</a>
|
||
|
<a href="/admin/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
|
||
|
{{ 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 }}
|