10 lines
178 B
Go
10 lines
178 B
Go
package controllers
|
|
|
|
type ErrorController struct {
|
|
BaseController
|
|
}
|
|
|
|
func (c *ErrorController) Error404() {
|
|
c.Data["Content"] = "Page not found"
|
|
c.TplName = "error/404.html"
|
|
} |