MailHog/http/server.go

15 lines
279 B
Go
Raw Normal View History

2014-04-20 14:35:59 +00:00
package http
import (
"github.com/ian-kent/gotcha/http"
"html/template"
2014-04-20 14:35:59 +00:00
)
func Index(session *http.Session) {
html, _ := session.RenderTemplate("index.html")
2014-04-20 14:35:59 +00:00
session.Stash["Page"] = "Browse"
session.Stash["Content"] = template.HTML(html)
session.Render("layout.html")
2014-04-20 14:35:59 +00:00
}