21 lines
270 B
HTML
21 lines
270 B
HTML
{{ define "content" }}
|
|
|
|
<h1>Projekte</h1>
|
|
|
|
<button
|
|
hx-get="/projects/new"
|
|
hx-target="#modal"
|
|
>
|
|
Neues Projekt
|
|
</button>
|
|
|
|
<div
|
|
hx-get="/api/projects"
|
|
hx-trigger="load"
|
|
hx-target="this"
|
|
>
|
|
</div>
|
|
|
|
<div id="modal"></div>
|
|
|
|
{{ end }} |