Skip to content

Latest commit

History

History
85 lines (68 loc) 路 1.81 KB

README.md

File metadata and controls

85 lines (68 loc) 路 1.81 KB
id title
slim
Slim

Release Discord Test Security Linter

Slim is a template engine created by mattn, to see the original syntax documentation please click here

Basic Example

./views/index.slim

== render("partials/header.slim")

h1 = Title

== render("partials/footer.slim")

./views/partials/header.slim

h2 = Header

./views/partials/footer.slim

h2 = Footer

./views/layouts/main.slim

doctype html
html
  head
    title Main
    include ../partials/meta.slim
  body
    == embed
package main

import (
	"log"

	"github.com/gofiber/fiber/v2"
	"github.com/gofiber/template/slim/v2"

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

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

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

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