blt/web/routes/index.go

13 lines
210 B
Go
Raw Permalink Normal View History

package routes
import (
"net/http"
"github.com/flamego/template"
)
func GetDashboard(t template.Template, data template.Data) {
data["title"] = "Dashboard"
t.HTML(http.StatusOK, "index/dashboard")
}