2024-06-26 20:06:32 +00:00
|
|
|
package handlers
|
2024-06-26 19:56:58 +00:00
|
|
|
|
|
|
|
import (
|
2024-06-26 20:06:32 +00:00
|
|
|
"go-udemy-web-1/pkg/render"
|
2024-06-26 19:56:58 +00:00
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Home is the about page handler
|
|
|
|
func Home(w http.ResponseWriter, r *http.Request) {
|
2024-06-26 20:06:32 +00:00
|
|
|
render.RenderTemplate(w, "home.page.tmpl")
|
2024-06-26 19:56:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// About is the about page handler
|
|
|
|
func About(w http.ResponseWriter, r *http.Request) {
|
2024-06-26 20:06:32 +00:00
|
|
|
render.RenderTemplate(w, "about.page.tmpl")
|
2024-06-26 19:56:58 +00:00
|
|
|
}
|