{# templates/blog/index.html.twig #}
{% if blogs is not empty %} {% for blog in blogs %}
{% if blog.image %} {{ blog.title }} {% endif %}

{{ blog.createdAt|date('F d, Y') }}

    {% for tag in blog.tags %}
  • {{ tag|upper }}

  • {% if not loop.last %}
  • {% endif %} {% endfor %}

{{ blog.title }}

{{ blog.content|slice(0, 200)|raw }}...

{% endfor %} {% else %}

Aucun article de blog disponible pour le moment.

{% endif %}
{% if totalPages > 1 %}
{% endif %}
Go Back Top