package main import ( "github.com/labstack/echo" "net/http" ) func showList(c echo.Context) error { //Config SiteConf := initConfig() //Template return c.Render(http.StatusOK, "index", SiteConf) }