GoStart/web/views/example.html
2024-05-26 20:17:40 -04:00

18 lines
413 B
HTML

{{define "view"}}
<header>
<h1 class="mt-8 mb-8 text-3xl font-bold text-blue-300">
This is an additional example route
</h1>
</header>
<main>
<section>
<h1 class="font-bold">Serve Static Files Like this Globe</h1>
<img src="/static/img/gopher.png" alt="alternate text">
</main>
<footer>
<p>&copy; 2024 My Web App</p>
</footer>
{{end}}