mirror of
https://github.com/askama-rs/askama.git
synced 2025-12-30 05:12:03 +00:00
9 lines
146 B
HTML
9 lines
146 B
HTML
{% match item %}
|
|
{% when Some with ("foo") %}
|
|
Found literal foo
|
|
{% when Some with (val) %}
|
|
Found {{val}}
|
|
{% when None %}
|
|
Not Found
|
|
{% endmatch %}
|