linx-server/pages.go

18 lines
396 B
Go
Raw Normal View History

2015-09-24 05:44:49 +00:00
package main
import (
"github.com/flosch/pongo2"
"net/http"
"github.com/zenazn/goji/web"
)
func indexHandler(c web.C, w http.ResponseWriter, r *http.Request) {
indexTpl := pongo2.Must(pongo2.FromCache("templates/index.html"))
err := indexTpl.ExecuteWriter(pongo2.Context{"sitename": Config.siteName}, w)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}