rDrama/files/templates/util/helpers.html

5 lines
109 B
HTML

{%- macro plural(value, suffix='s') -%}
{%- if value != 1 -%}
{{ suffix }}
{%- endif -%}
{%- endmacro -%}