GoStart/web/views/example.html

18 lines
413 B
HTML
Raw Normal View History

2024-05-17 19:53:56 +00:00
{{define "view"}}
2024-05-15 20:28:12 +00:00
<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>
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>
<footer>
<p>&copy; 2024 My Web App</p>
</footer>
2024-05-17 19:53:56 +00:00
{{end}}