mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 06:21:13 +00:00
16 lines
185 B
HTML
16 lines
185 B
HTML
{% for s in 0..2 -%}
|
|
foo
|
|
{% endfor -%}
|
|
|
|
{% for s in init..1 -%}
|
|
bar
|
|
{% endfor -%}
|
|
|
|
{% for s in 0..end -%}
|
|
foo
|
|
{% endfor -%}
|
|
|
|
{% for s in init..end -%}
|
|
bar
|
|
{% endfor -%}
|