12 lines
317 B
HTML
12 lines
317 B
HTML
{{define "view"}}
|
|
<main>
|
|
<section>
|
|
<h1 class="font-bold">Serve Static Files Like this Gopher</h1>
|
|
|
|
<button hx-get="/" class="p-2 text-white bg-blue-400 rounded-md">
|
|
Click Me!
|
|
</button>
|
|
<img src="/static/img/gopher.png" alt="alternate text">
|
|
</main>
|
|
{{end}}
|