...
- Use soft tabulations with two spaces to indent.
- Use single quotes to surround strings.
- Use snake case (underscores) to name your blocks.
Code Block |
---|
{% block my_block_name %}
{% set foo = 'foo' %}
{% endblock %} |
...
Code Block |
---|
{% block my_block_name %}
{% set foo = 'foo' %}
{% endblock %} |