Skip to content

Latest commit

History

History
88 lines (69 loc) 路 1.83 KB

README.md

File metadata and controls

88 lines (69 loc) 路 1.83 KB
id title
handlebars
Handlebars

Release Discord Test Security Linter

Handlebars is a template engine create by aymerick, to see the original syntax documentation please click here

Basic Example

./views/index.hbs

{{> 'partials/header' }}

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

{{> 'partials/footer' }}

./views/partials/header.hbs

<h2>Header</h2>

./views/partials/footer.hbs

<h2>Footer</h2>

./views/layouts/main.hbs

<!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/handlebars/v2"
)

func main() {
	// Create a new engine
	engine := handlebars.New("./views", ".hbs")

  // Or from an embedded system
  // See github.com/gofiber/embed for examples
  // engine := html.NewFileSystem(http.Dir("./views", ".hbs"))

	// Pass the engine to the Views
	app := fiber.New(fiber.Config{
		Views: engine,
	})

	app.Get("/", func(c *fiber.Ctx) error {
		// Render index
		return c.Render("index", fiber.Map{
			"Title": "Hello, World!",
		})
	})

	app.Get("/layout", func(c *fiber.Ctx) error {
		// Render index within layouts/main
		return c.Render("index", fiber.Map{
			"Title": "Hello, World!",
		}, "layouts/main")
	})

	log.Fatal(app.Listen(":3000"))
}