Files
go_blog/controllers/home.go

18 lines
282 B
Go
Raw Normal View History

2025-04-09 16:56:05 +08:00
package controllers
import (
2025-04-15 16:47:00 +08:00
"go_blog/models"
2025-04-09 16:56:05 +08:00
"net/http"
"github.com/gin-gonic/gin"
)
func Home(c *gin.Context) {
2025-04-15 16:47:00 +08:00
var items []models.Content
models.DB.Select("*").Limit(5).Find(&items, "type = ?", "post")
c.HTML(http.StatusOK, "index.tmpl", gin.H{
"Items": items,
2025-04-09 16:56:05 +08:00
})
}