コード例 #1
0
ファイル: main.go プロジェクト: calaniz/alanisoft
func GetMain(w http.ResponseWriter, r *http.Request) *AppError {
	w.WriteHeader(http.StatusOK)
	w.Write(util.RenderIndex("/main/main.html"))
	return nil
}
コード例 #2
0
ファイル: blog.go プロジェクト: calaniz/alanisoft
func GetBlog(w http.ResponseWriter, r *http.Request) *AppError {
	w.WriteHeader(http.StatusOK)
	w.Write(util.RenderIndex("/blog/blog.html"))
	return nil
}