mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 13:30:59 +00:00
4 lines
173 B
HTML
4 lines
173 B
HTML
{% for s in strings %}
|
|
{{- loop.index0 }}. {{ s }}{{ 2 * loop.index }}{% if !loop.first %}{% else %} (first){% endif %}{% if loop.last %} (last){% endif %}
|
|
{% endfor %}
|