{% extends 'app/' ~ template ~ '.html.twig' %} {% block title %}{{ article.metaTitle|striptags }}{% endblock %} {% block meta_desc %}{{ article.metaDescription|striptags }}{% endblock %} {% block og_type %}article{% endblock %} {% block og_title %}{{ article.metaTitle|striptags }}{% endblock %} {% block og_description %}{{ article.metaDescription|striptags }}{% endblock %} {% block og_image %}{% spaceless %}{% if article.file is not null %}{{ absolute_url(asset(article.file.path)) }}{% endif %}{% endspaceless %}{% endblock %} {% block content %}

{{ article.title|striptags }}

{{ article.subtitle|striptags }}

{% if article.file is not null %}
{{ article.file.originalFilename }}
{% endif %}
{{ article.dateDisplay|localizeddate('full', 'none')|title }}
{{ article.content|raw }} {% if article.attachments is not empty %} {% for attachment in article.attachments %} {% if is_granted('read', attachment) %} {% endif %} {% endfor %}
{{ attachment.title }} Télécharger
{% endif %}
{% if article.email is not empty %} {{ article.author }} {% else %} {{ article.author }} {% endif %} ' {% if article.source is not empty %} - {{ article.source }}{% endif %}
{% endblock %} {% block view_js %} {% endblock %}