{% include 'partial/home/search.html.twig' %} {# ---------------------- Hero Section ---------------------- #}

{{ blogArticle.title }}

Publié le {{ blogArticle.publishedAt|date('d/m/Y') }} {% if blogArticle.category %}  |  {{ blogArticle.category.title }} {% endif %}

{# ---------------------- Article Detail ---------------------- #}
{# Featured Image #} {% if blogArticle.imagePath %}
{{ blogArticle.title }}
{% endif %} {# Short Description #}

{{ blogArticle.shortDescription }}

{# Main Content #}
{{ blogArticle.content|raw }}
{% if relatedArticles|length > 0 %}
Articles relatifs
{% for article in relatedArticles %}
{% if article.imagePath %} {{ article.title }} {% endif %}
{{ article.title|length > 45 ? article.title|slice(0, 45) ~ '...' : article.title }}

{{ article.shortDescription|length > 85 ? article.shortDescription|slice(0, 85) ~ '...' : article.shortDescription }}

Lire plus
{% endfor %}
{% endif %}

Commentaires

{# ---------------------- Back to Top ---------------------- #}