This module allows Pug.js templates to be used with DADI Web.
-
Add this module as a dependency:
npm install @dadi/web-pugjs --save
-
Include it in the
engines
array passed to Web:require('@dadi/web')({ engines: [ require('@dadi/web-pugjs') ] })
Partials can be included using the include
keyword and paths to the included files can be absolute or relative (see Pug's documentation).
The base directory for absolute paths is the pages/
directory. Take the following directory tree.
pages/
|_ partials/
|_ |_ common/
|_ |_ |_ header.pug
|_ |_ contact-info.pug
|_ home.pug
To include header.pug
from contact-info.pug
, you can do:
//- Absolute path
include /partials/common/header.pug
//- Relative path
include common/header.pug
Add a DADI Web configuration setting for helpers
, pointing to a directory containing helper files. Each .js
helper file will be added as a property to template locals for use within templates.
engines: {
pug: {
paths: {
helpers: 'test/workspace/helpers'
}
}
}
helpers/
|_ trim.js
pages/
|_ partials/
|_ |_ common/
|_ |_ |_ header.pug
|_ |_ contact-info.pug
|_ home.pug
The function is added to the template locals, along with data objects:
{
products: [
{ name: 'The Old Man and the Sea' }
],
trim: [Function]
}
Use the function in templates like so:
h1= trim(product.name)