{% extends '@root/layouts/twig/full_page/search.twig' %}

{% block _ext_store_news_articles_price %}
	{% if news.price and (not news.youtube) %}
		{% if news.ext_store_sold_out %}
			<h4 class="title ext-price sold-out text-left">
				<i class="fa fa-close"></i>
				{{ out.sold_out }}
			</h4>
		{% else %}
			<h4 class="title ext-price text-left">
				<i class="fa fa-euro"></i>
				{{ news.price | number_format(2, '.', '') }}
				{% if not(general.exts.store.settings.vat_show) and not(general.exts.store.settings.vat_exempt_art_53) %}
					+ {{ text.misc.ext.store.vat }}
				{% endif %}
			</h4>
		{% endif %}
	{% endif %}
{% endblock %}