GoStart/web/views/index.html

21 lines
506 B
HTML

{{define "view"}}
<main>
<section>
<button
hx-get="/api/example"
class="p-2 text-white rounded-md bg-amber-400"
>
Click Me!
</button>
<h1 class="font-bold">API Example</h1>
<a href="/api/example" target="_blank">Access Example API</a>
<h2>Content Section</h2>
<p>
This is the main content of your web app. You can add any HTML content
here.
</p>
<a href="/example">Another Example Route can be found here</a>
</section>
</main>
{{end}}