GoStart/web/views/example.html

12 lines
317 B
HTML
Raw Normal View History

2024-05-17 19:53:56 +00:00
{{define "view"}}
2024-05-15 20:28:12 +00:00
<main>
<section>
2024-05-28 00:55:30 +00:00
<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>
2024-05-27 00:17:40 +00:00
<img src="/static/img/gopher.png" alt="alternate text">
2024-05-15 20:28:12 +00:00
</main>
2024-05-17 19:53:56 +00:00
{{end}}