{#
/**
* @file
* Default theme implementation to display a price.
*
* Displays a price in the standard format and with consistent markup.
*
* Available variables:
* - price: A formatted price.
* - suffixes: An array of suffixes to be attached to this price.
*
* @ingroup themeable
#}
{% spaceless %}
{{ price }}
{% if suffixes is not empty %}
{{ suffixes|join(' ') }}
{% endif %}
{% endspaceless %}