{% extends layout %} {% set domain = app.request.attributes.get('domain') %} {% block title %}{{ app.request.attributes.get('domain').title }} | Blog | Stiletto.fr - magazine de mode{% if page is defined and page != 1 %} | Page {{ page }}{% endif %}{% endblock %} {% block metadescription %}{{ app.request.attributes.get('domain').description }} | Page {{ page }}{% endblock %} {% block metaimage %}{% if domain.id == 2 %}{{ asset('img/blog-benaim.jpg') }}{% elseif domain.id == 3 %}{{ asset('img/blog-porret.jpg') }}{% elseif domain.id == 4 %}{{ asset('img/blog-hussonois.jpg') }}{% else %}{{ asset('img/blog-site.jpg') }}{% endif %}{% endblock %} {% block breadcrumb %} >
Le blog de {{ app.request.attributes.get('domain').title }}
>
Accueil
{% endblock %} {% block body %} {% set featured = false %} {% include 'StilettoCmsBundle:Frontend:blog-post-featured.html.twig' %} {% for post in posts %} {% if loop.index == 1 %}
{% endif %} {% if loop.index != 1 or featured == false %} {% include 'StilettoCmsBundle:Frontend:blog-post.html.twig' with {'featured': featured} %} {% endif %} {% if loop.last == 1 %}
{% endif %} {% else %} Pas d'articles {% endfor %} {% endblock %} {% block footer %}{{ app.request.attributes.get('domain').description }}{% endblock %}