Files
crowsnest/golang/assets/templates/layout.html

50 lines
1.8 KiB
HTML
Raw Normal View History

{{ define "base" }}
<!DOCTYPE html>
<html lang="de" data-theme="dark">
<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">
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.12.23/dist/full.min.css" rel="stylesheet" type="text/css" />
<body>
<nav class="fixed top-0 z-50 w-full p-4">
<div class="navbar bg-base-300 rounded-box drop-shadow-md">
<div class="flex-1">
<a href="/" class="btn btn-ghost text-xl">crowsnest</a>
<ul class="menu menu-horizontal">
<li><a class="active">Artikel</a></li>
<li><a>Themen</a></li>
</ul>
</div>
<div class="flex-none pe-4">
<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" />
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="h-4 w-4 opacity-70">
<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" />
</svg>
</label>
</form>
</div>
</div>
</nav>
<div class="container mx-auto px-4 mt-28">
{{ template "content" . }}
</div>
2025-01-02 00:35:41 +01:00
<script src="https://cdn.jsdelivr.net/npm/unpoly@3.9.5/unpoly.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
</body>
</html>
{{ end }}