GoStart/web/views/example.html
2024-05-17 15:53:56 -04:00

18 lines
412 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/globe.png" alt="alternate text">
</main>
<footer>
<p>&copy; 2024 My Web App</p>
</footer>
{{end}}