Click here
to download this notebook.
[ ]:
abc = "A B C"
properties = {
"subtitle1": "SUBTITLE 1",
"subtitle2": "SUBTITLE 2",
}
title = "This is a title"
Simple template example
{{ title }}
Loop on values inside the template:
__loop {% set variable, values = “title”, [“subtitle1”, “subtitle2”] %}
[ ]:
title = "{{ title }}"
{{ properties[title] }} {{ abc }}
__end_loop