Added HTML

This commit is contained in:
2026-06-05 19:00:48 +02:00
parent 0a44df319d
commit 1a0797ef19
9 changed files with 265 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
{{ define "content" }}
<h1>Inventar</h1>
<input
type="search"
name="q"
placeholder="Suchen..."
hx-get="/api/items/search"
hx-trigger="keyup changed delay:300ms"
hx-target="#items"
>
<div
id="items"
hx-get="/api/items"
hx-trigger="load"
>
</div>
{{ end }}