{% extends 'Application/' ~ settings.get("theme") ~'/base.html.twig' %} {% block title %}{{"Accueil"|trans}}{% endblock %} {% block body %}

{{ 'Actualités'|trans }}

{% for news in news %}
{% if news.category is not null %}
{{news.category.name}}
{% endif %}

Icône des articles {{news.title}}

{% endfor %}
{{"Tout afficher"|trans}}

{{ 'Boutique'|trans }}

{% for item in shop %} {% if item.image is not null %}
{{item.name}} | Hôtel des ventes - {{settings.get('game_title')}} | {{settings.get('seo_description')}}

{{item.name}} {% if item.quantity > 1 %} (x{{item.quantity}}) {% endif %} {% if (item.promotion > 0) %} -{{ item.promotion }}%{% endif %}

{{item.description|striptags|raw}}
{% endif %} {% if item.image is null %}
{{item.itemData.Name}} | Hôtel des ventes - {{settings.get('game_title')}} | {{settings.get('seo_description')}} {{item.itemData.Name}} {% if item.quantity > 1 %} (x{{item.quantity}}) {% endif %} {% if (item.promotion > 0) %} -{{ item.promotion }}%{% endif %}

{{ (item.description|striptags) > 150 ? ((item.description|striptags|slice(0, 150)) ~ '...')|raw : (item.description|striptags|raw) }}

{% endif %} {% endfor %}
{% endblock %}