package main
import("github.com/gogf/gf/frame/g""github.com/gogf/gf/net/ghttp")funcmain(){
s := g.Server()
s.BindHandler("/",func(r *ghttp.Request){
r.Response.WriteTpl("layout.html", g.Map{"header":"This is header","container":"This is container","footer":"This is footer",})})
s.SetPort(8199)
s.Run()}