Files
go_blog/controllers/home.go

14 lines
172 B
Go
Raw Normal View History

2025-04-09 16:56:05 +08:00
package controllers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Home(c *gin.Context) {
c.HTML(http.StatusOK, "home.html", gin.H{
"title": "首页",
})
}