2023-05-18 20:04:55 -06:00
|
|
|
{{define "header"}}
|
|
|
|
<header class="navbar bg-base-100">
|
|
|
|
<div class="navbar-start">
|
2025-01-12 14:51:43 -06:00
|
|
|
<a class="btn btn-ghost normal-case text-lg sm:text-xl text-white" href="/">{{template "navcontent".}}</a>
|
2023-05-18 20:04:55 -06:00
|
|
|
</div>
|
|
|
|
<div class="navbar-end z-50">
|
|
|
|
<div class="dropdown dropdown-end">
|
|
|
|
<label tabindex="0" class="btn btn-sm btn-ghost text-white">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-menu"><line x1="4" x2="20" y1="12" y2="12"/><line x1="4" x2="20" y1="6" y2="6"/><line x1="4" x2="20" y1="18" y2="18"/></svg>
|
|
|
|
</label>
|
|
|
|
<ul
|
|
|
|
tabindex="0"
|
|
|
|
class="menu menu-compact dropdown-content gap-2 mt-3 p-2 shadow bg-base-100 rounded-box"
|
2024-10-30 23:50:34 -06:00
|
|
|
preload="mouseover"
|
2023-05-18 20:04:55 -06:00
|
|
|
>
|
|
|
|
{{template "navitems" .}}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{{end}}
|