{% extends 'base.html.twig' %} {% block title %}{{ metaTitle ?? article.title }}{% endblock %} {% block head_extra %} {% if metaTitle is not null %} {% if metaDescription %}{% endif %} {% if metaNoindex %}{% endif %} {% if metaDescription %}{% endif %} {% if metaOgImage %}{% endif %} {% endif %} {% endblock %} {% block header_user %} {% if app.user %}
{{ 'nav.admin'|trans }} {{ 'nav.logout'|trans }}
{% endif %} {% endblock %} {% block body %}
{{ 'article.back'|trans }}
{% if article.imageUrl %} {% endif %}

{{ article.title }}

{{ article.category.name }} {% for tag in article.tags %} {{ tag.name }} {% endfor %}

{{ article.summary|raw }}

{{ plugin_hook('article_top') }}
{{ body|raw }}
{{ plugin_hook('article_share', {article: article}) }} {{ plugin_hook('article_references_display', {article: article}) }} {{ plugin_hook('article_bottom') }}
{% endblock %}