website/pkg/controller/index/index.go

34 lines
805 B
Go

package index
import (
"net/http"
"code.nonshy.com/nonshy/website/pkg/config"
"code.nonshy.com/nonshy/website/pkg/log"
"code.nonshy.com/nonshy/website/pkg/templates"
)
// Create the controller.
func Create() http.HandlerFunc {
tmpl := templates.Must("index.html")
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/" || r.Method != http.MethodGet {
log.Error("404 Not Found: %s", r.URL.Path)
templates.NotFoundPage(w, r)
return
}
if err := tmpl.Execute(w, r, nil); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
})
}
// Favicon
func Favicon() http.HandlerFunc {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, config.StaticPath+"/favicon.ico")
})
}