rDrama/files/templates/util/helpers.html

6 lines
108 B
HTML

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