13 lines
266 B
Go
13 lines
266 B
Go
package handler
|
|
|
|
import (
|
|
"vctp/components/core"
|
|
"vctp/components/home"
|
|
"net/http"
|
|
)
|
|
|
|
// Home handles the home page.
|
|
func (h *Handler) Home(w http.ResponseWriter, r *http.Request) {
|
|
h.html(r.Context(), w, http.StatusOK, core.HTML("Example Site", home.Home()))
|
|
}
|