解析模板和css js
func main() {
    router := gin.Default()
    router.LoadHTMLGlob("./templates/*")
    router.Static("/static", "./static")
    
    ...
设置模板路径
router.LoadHTMLGlob("./templates/*")
设置Css js这样的静态文件
router.Static("/static", "./static")
func main() {
    router := gin.Default()
    router.LoadHTMLGlob("./templates/*")
    router.Static("/static", "./static")
    
    ...
设置模板路径
router.LoadHTMLGlob("./templates/*")
设置Css js这样的静态文件
router.Static("/static", "./static")