{% extends 'sites/template-' ~ site.template.id ~ '/base.html.twig' %} {% block title %}{{site.name}} | {{ site.pricing.seoTitle }}{% endblock %} {% block description %}{{ site.pricing.seoDescription }}{% endblock %} {% block tarifActive %}active{% endblock %} {% block body %} {% if site.home.mainPicture is defined and site.home.mainPicture is not null %}
{% else %}
{% endif %}

{{ site.pricing.seoTitle }}

{% if categories|length > 0 and products|length > 0 %} {% for category in categories %}

{{ category.name }}

{{ category.description }}
    {% for product in products %} {% if product.category.id is defined and product.category.id == category.id %}
  • {{ product.name }}
    {{ product.price }} {{ product.currency }}
  • {% endif %} {% endfor %}
{% endfor %} {% endif %}
{{ site.pricing.content|raw|nl2br }}
{% endblock %}