Skip to content

Latest commit

 

History

History
91 lines (71 loc) · 1.83 KB

File metadata and controls

91 lines (71 loc) · 1.83 KB
id pug
title Pug

Release Discord Test

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

Installation

Go version support: We only support the latest two versions of Go. Visit https://go.dev/doc/devel/release for more information.

go get github.com/gofiber/template/pug/v3

Basic Example

./views/index.pug

include partials/header.pug

h1 #{.Title}

include partials/footer.pug

./views/partials/header.pug

h2 Header

./views/partials/footer.pug

h2 Footer

./views/layouts/main.pug

doctype html
html
  head
    title Main
    include ../partials/meta.pug
  body
    | {{embed}}
package main

import (
	"log"

	"github.com/gofiber/fiber/v3"
	"github.com/gofiber/template/pug/v3"

	// "net/http" // embedded system
)

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

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

	// 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"))
}