mirror of
https://github.com/askama-rs/askama.git
synced 2025-12-30 05:12:03 +00:00
9 lines
176 B
HTML
9 lines
176 B
HTML
The card is
|
|
{%- match suit %}
|
|
{%- when Suit::Clubs or Suit::Spades -%}
|
|
{{ " black" }}
|
|
{%- when Suit::Diamonds or Suit::Hearts -%}
|
|
{{ " red" }}
|
|
{%- endmatch %}
|
|
|