Mustache


Mustache는 hoisie/cbroglie에 의해 만들어진 템플릿 엔진입니다. 원래 문법 문서를 보려면 여기를 클릭하세요.

Basic Example

./views/index.mustache

{{> views/partials/header }}

<h1>{{Title}}</h1>

{{> views/partials/footer }}

./views/partials/header.mustache

<h2>Header</h2>

./views/partials/footer.mustache

<h2>Footer</h2>

./views/layouts/main.mustache

<!DOCTYPE html>
<html>
  <head>
    <title>Main</title>
  </head>
  <body>
    {{{embed}}}
  </body>
</html>
package main

import (
  "log"
  "github.com/gofiber/fiber/v2"
  "github.com/gofiber/template/mustache/v2"
)

func main() {
  // 새로운 엔진 생성
  engine := mustache.New("./views", ".mustache")

  // 또는 임베디드 시스템에서 생성
  // 임베디드 시스템에서는 템플릿 파일에 포함된 partials이 현재 작업 디렉토리가 아닌
  // 파일 시스템의 루트를 기준으로 지정되어야 합니다.
  // engine := mustache.NewFileSystem(http.Dir("./views", ".mustache"), ".mustache")

  // Views에 엔진 전달
  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"))
}

Last updated