{% extends 'sites/template-' ~ site.template.id ~ '/base.html.twig' %} {% block title %}{{site.name}} - {{site.blog.seoTitle}}{% endblock %} {% block description %}{{site.blog.seoDescription}}{% endblock %} {% block blogActive %}active{% endblock %} {% block body %}
{% if posts|length > 0 %} {% set siteName = site.internalName|param(app.request.server.get('REQUEST_URI')) %}
    {% for post in posts %} {% set siteName = siteName|merge({'post':post.id}) %}
  • {% if post.image is defined and post.image is not null %} {% endif %}

    {{ post.title }}

    Le {{ post.creationDate|date('d/m/Y') }}

    {{ post.introduction }}

    Voir la suite
  • {% endfor %}
{% else %}
Aucun article n'a été publié.
{% endif %}
{% endblock %}