You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
699 B
30 lines
699 B
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/flosch/pongo2"
|
|
"github.com/zenazn/goji/web"
|
|
)
|
|
|
|
func indexHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
|
err := Templates["index.html"].ExecuteWriter(pongo2.Context{}, w)
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
}
|
|
}
|
|
|
|
func notFoundHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(404)
|
|
err := Templates["404.html"].ExecuteWriter(pongo2.Context{}, w)
|
|
if err != nil {
|
|
oopsHandler(c, w, r)
|
|
}
|
|
}
|
|
|
|
func oopsHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
|
err := Templates["oops.html"].ExecuteWriter(pongo2.Context{}, w)
|
|
if err != nil {
|
|
oopsHandler(c, w, r)
|
|
}
|
|
}
|