зеркало из https://github.com/softlandia/gin-s1.git
29 строки
492 B
Go
29 строки
492 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func main() {
|
|
router := gin.Default()
|
|
router.LoadHTMLGlob("templates/*")
|
|
router.GET("/", func(c *gin.Context) {
|
|
|
|
// Call the HTML method of the Context to render a template
|
|
c.HTML(
|
|
// Set the HTTP status to 200 (OK)
|
|
http.StatusOK,
|
|
// Use the index.html template
|
|
"index.html",
|
|
// Pass the data that the page uses (in this case, 'title')
|
|
gin.H{
|
|
"title": "Home Page",
|
|
},
|
|
)
|
|
|
|
})
|
|
router.Run()
|
|
}
|