Skip to content

Instantly share code, notes, and snippets.

@miguel-amaral
Last active March 3, 2020 15:59
Show Gist options
  • Save miguel-amaral/7ab6ba0191fd7986e4937b10093b274b to your computer and use it in GitHub Desktop.
Save miguel-amaral/7ab6ba0191fd7986e4937b10093b274b to your computer and use it in GitHub Desktop.
{#
{{ variable_that_does_not_exist | default("This is the default String") }}
{{ empty_variable | default("This is the default for the empty variable") }}
{% if empty_variable is not defined %}
It is not defined
{% else %}
Empty Variable: {{ empty_variable }}
{% endif %}
#}
{%- for i in range(0, 3) %}
{{ i }},
{%- endfor -%}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment