example page fixed
This commit is contained in:
parent
9f741eecbe
commit
c0b4e92a57
@ -10,7 +10,7 @@ func ExampleHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
Title: "Example Page",
|
Title: "Example Page",
|
||||||
}
|
}
|
||||||
|
|
||||||
tmpl, err := template.ParseFiles("web/views/#layout.html", "web/views/example.html")
|
tmpl, err := template.ParseFiles("web/views/#layout.html", "web/views/example.html", "web/views/#header.html", "web/views/#footer.html")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
|
@ -1,17 +1,11 @@
|
|||||||
{{define "view"}}
|
{{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>
|
<main>
|
||||||
<section>
|
<section>
|
||||||
<h1 class="font-bold">Serve Static Files Like this Globe</h1>
|
<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">
|
<img src="/static/img/gopher.png" alt="alternate text">
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer>
|
|
||||||
<p>© 2024 My Web App</p>
|
|
||||||
</footer>
|
|
||||||
{{end}}
|
{{end}}
|
||||||
|
Loading…
Reference in New Issue
Block a user