Files
jepa-fx-risk/internal/web/index.templ
T
2026-05-27 21:55:18 +00:00

17 lines
375 B
Templ

package web
templ Index() {
@Layout("hostexecutor") {
<h1 class="text-3xl font-semibold mb-6">hostexecutor</h1>
<button hx-get="/api/hello" hx-target="#out"
class="px-4 py-2 bg-slate-900 text-white rounded-md hover:bg-slate-700">
Say hello
</button>
<div id="out" class="mt-6 text-slate-700"></div>
}
}
templ Hello(name string) {
<p>Hello, { name }!</p>
}