-
Notifications
You must be signed in to change notification settings - Fork 0
Template Syntax
Leonard Ramminger edited this page May 14, 2026
·
1 revision
Hello {{ name }}
{{ user.name }}
{{ items[1] }}{{ include "partials/header.txt" }}Lookup order per root:
.pbc.pbt- raw path
index.pbcindex.pbtindex
{{ if enabled }}
Enabled
{{ elseif fallback }}
Fallback
{{ else }}
Disabled
{{ endif }}{{ for item in items }}{{ item }}{{ else }}empty{{ endfor }}
{{ for key, value in user }}{{ key }}={{ value }};{{ endfor }}Loop metadata:
loop.indexloop.index0loop.firstloop.last
{{ set title = name | trim | upper }}A {{- name -}} BSupported operators:
!&&||==!=-
<,>,<=,>= in- parentheses
trimupperlowerdefault(fallback)replace(from, to)