include partials/header.pug
h1 #{.Title}
include partials/footer.pug
doctype html
html
head
title 메인
include ../partials/meta.pug
body
| {{embed}}
package main
import (
"log"
"github.com/gofiber/fiber/v2"
"github.com/gofiber/template/pug/v2"
// "net/http" // 임베디드 시스템
)
func main() {
// 새 엔진 생성
engine := pug.New("./views", ".pug")
// 또는 임베디드 시스템에서
// 예제는 github.com/gofiber/embed 참조
// engine := pug.NewFileSystem(http.Dir("./views"), ".pug")
// 엔진을 뷰에 전달
app := fiber.New(fiber.Config{
Views: engine,
})
app.Get("/", func(c *fiber.Ctx) error {
// index 렌더링
return c.Render("index", fiber.Map{
"Title": "Hello, World!",
})
})
app.Get("/layout", func(c *fiber.Ctx) error {
// layouts/main 내에서 index 렌더링
return c.Render("index", fiber.Map{
"Title": "Hello, World!",
}, "layouts/main")
})
log.Fatal(app.Listen(":3000"))
}