{% extends 'base.html.twig' %} {% block jsonld %} {% endblock %} {% block body %} {# --- Breadcrumbs --- #}
{# --- Featured image hero --- #} {% if article.featuredMedia %}
{{ responsive_img(article.featuredMedia, '(max-width: 768px) 100vw, 900px', 'article-hero__img') }}
{% endif %}
{# ====== Barre partage sticky (desktop gauche) ====== #}
{% set articleUrl = url('app_article_show', { slug: article.slug }) %} {% set articleTitle = article.title|url_encode %}
{# ====== Contenu principal ====== #}
{# --- Meta header --- #}
{% for cat in article.categories %} {{ cat.name }} {% endfor %} {{ article.content|readingTime }} min de lecture
{# --- Titre --- #}

{{ article.title }}

{% if article.featuredText %}

{{ article.featuredText }}

{% endif %} {# --- Contenu (with TOC anchor ids) --- #}
{{ article.content|toc_anchors|raw }}
{# --- Tags --- #} {% if article.tag|length > 0 %}
{% for tag in article.tag %} {{ tag.name }} {% endfor %}
{% endif %} {# --- Partage mobile (barre fixe bas) --- #} {# --- Bloc auteur --- #} {% if article.comments is defined %} {% set author = article.comments|length > 0 ? null : null %} {% endif %}
{% if app.user and app.user.avatar %} {% else %}
{% endif %}

Blog

Retrouvez tous nos articles et actualités sur notre blog.

{# ====== Commentaires ====== #}

{{ article.comments|length }} commentaire{{ article.comments|length > 1 ? 's' : '' }}

{% if is_granted('ROLE_USER') %}
{{ form_start(commentForm) }} {{ form_widget(commentForm) }} {{ form_end(commentForm) }}
{% else %}

Connectez-vous pour laisser un commentaire.

{% endif %}
{% for comment in article.comments %}
{{ comment.user.displayName }}

{{ comment.content }}

{% endfor %}
{# ====== Articles connexes ====== #} {% if relatedArticles is defined and relatedArticles|length > 0 %}

Articles similaires

{% for article in relatedArticles %} {% include 'article/item.html.twig' %} {% endfor %}
{% endif %}
{# ====== Sidebar ====== #}
{% endblock %}