Skip to main content

Template Language

Briskine uses the Handlebars templating language to support personalized and dynamic content in templates.

You can use all of the built-in features of Handlebars, in Briskine templates.

Syntax

Handlebars uses curly braces for wrapping expressions. The simplest Handlebars expression is what we call a variable in Briskine.

{{to.first_name}}

When you insert a template, Briskine will automatically replace the expression/variable with a different value.

Expressions can also be helpers or block helpers (e.g., for inserting dates or conditional statements).

info

You'll find examples for the most used Handlebars features in the Briskine Help Center.

For information about Handlebars internals or advanced features, see the Handlebars documentation.