Pug
Use the Pug template engine to create pages and layouts
Options See on deno.land
- extensions string[]
The list of extensions this plugin applies to
Default:[ ".pug" ]
- pageSubExtension string
Optional sub-extension for page files
- includes string
Custom includes path
Default:site.options.includes
- options object
Options passed to Pug
Description
Pug is a template engine heavily influenced by Haml. This plugin allows you to use it to create pages and layouts.
Installation
Import this plugin in your _config.ts
file to use it:
import lume from "lume/mod.ts";
import pug from "lume/plugins/pug.ts";
const site = lume();
site.use(pug(/* Options */));
export default site;
Creating layouts
Add a file with .pug
extension in the _includes
directory. Use the front matter to set data for the template.
---
title: Welcome to my page
intro: This is my first post using Lume. I hope you like it!
---
doctype html
html
head
title= title
body
include partials/nav.pug
p= title
Note that the paths passed to include
are relative to _includes
directory.
Creating pages
Creating pages is the same as creating layouts; just place the .pug
file outside the _includes
directory.