2024-12-30 15:45:40 +01:00
|
|
|
{{ define "base" }}
|
|
|
|
|
<!DOCTYPE html>
|
2025-01-10 18:52:40 +01:00
|
|
|
<html lang="de" data-theme="dark">
|
2024-12-30 15:45:40 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2025-01-02 00:35:41 +01:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/unpoly@3.9.5/unpoly.min.css">
|
2025-01-10 18:52:40 +01:00
|
|
|
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.12.23/dist/full.min.css" rel="stylesheet" type="text/css" />
|
2024-12-30 15:45:40 +01:00
|
|
|
<body>
|
2025-01-01 23:28:12 +01:00
|
|
|
|
2025-01-10 18:52:40 +01:00
|
|
|
<nav class="fixed top-0 z-50 w-full p-4">
|
|
|
|
|
<div class="navbar bg-base-300 rounded-box drop-shadow-md">
|
|
|
|
|
|
2025-01-10 19:33:44 +01:00
|
|
|
{{/* Logo with navigation */}}
|
|
|
|
|
|
2025-01-10 18:52:40 +01:00
|
|
|
<div class="flex-1">
|
|
|
|
|
<a href="/" class="btn btn-ghost text-xl">crowsnest</a>
|
2025-01-10 19:33:44 +01:00
|
|
|
<ul class="menu menu-horizontal hidden sm:flex">
|
2025-01-10 18:52:40 +01:00
|
|
|
<li><a class="active">Artikel</a></li>
|
|
|
|
|
<li><a>Themen</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-01-10 19:33:44 +01:00
|
|
|
{{/* Search field for normal sized screen */}}
|
|
|
|
|
|
|
|
|
|
<div class="hidden sm:flex flex-none pe-4">
|
2025-01-10 18:52:40 +01:00
|
|
|
<form role="search" method="post" action="/up/search" up-submit up-autosubmit up-target=".content">
|
|
|
|
|
<label class="input input-bordered input-sm flex items-center gap-2">
|
|
|
|
|
<input name="search" type="search" class="grow" placeholder="Suche" />
|
2025-01-10 19:33:44 +01:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor"
|
2025-01-10 18:52:40 +01:00
|
|
|
class="h-4 w-4 opacity-70">
|
2025-01-10 19:33:44 +01:00
|
|
|
<path fill-rule="evenodd" d="M9.965 11.026a5 5 0 1 1 1.06-1.06l2.755 2.754a.75.75 0 1 1-1.06 1.06l-2.755-2.754ZM10.5 7a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z" clip-rule="evenodd" />
|
2025-01-10 18:52:40 +01:00
|
|
|
</svg>
|
|
|
|
|
</label>
|
2025-01-10 19:33:44 +01:00
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{{/* Dropdown for small screens */}}
|
|
|
|
|
|
|
|
|
|
<div class="dropdown dropdown-end sm:hidden">
|
|
|
|
|
<div tabindex="0" role="button" class="btn btn-ghost">
|
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"
|
|
|
|
|
class="h-6 w-6 opacity-70">
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5M12 17.25h8.25" />
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
<ul tabindex="0" class="menu dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-52 p-2 shadow">
|
|
|
|
|
<li><a class="active">Artikel</a></li>
|
|
|
|
|
<li><a>Themen</a></li>
|
|
|
|
|
</ul>
|
2025-01-10 18:52:40 +01:00
|
|
|
</div>
|
|
|
|
|
|
2025-01-01 23:28:12 +01:00
|
|
|
</div>
|
|
|
|
|
</nav>
|
2024-12-30 15:45:40 +01:00
|
|
|
|
2025-01-10 18:52:40 +01:00
|
|
|
<div class="container mx-auto px-4 mt-28">
|
2024-12-30 15:45:40 +01:00
|
|
|
{{ template "content" . }}
|
2025-01-10 18:52:40 +01:00
|
|
|
</div>
|
2024-12-30 15:45:40 +01:00
|
|
|
|
2025-01-02 00:35:41 +01:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/unpoly@3.9.5/unpoly.min.js"></script>
|
2025-01-10 18:52:40 +01:00
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
2024-12-30 15:45:40 +01:00
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
{{ end }}
|