Click here to download this notebook.

Simple template with configuration example

{{ title }}

{{ misc.atext }}

Loop on values from the configuration file:

__loop {% set variable, values = “field”, {{ fields }} %}

{{ field.name }} diagnostics

{{ field.text }}

[ ]:
a = 2 + 3
b = "{{ field.name }}_xbc"

b
[ ]:
a

Other loop inside first loop

__loop {% set variable, values = “var”, [“val1”, “val2”] %}

{{ var }}

__end_loop

__end_loop