{% extends 'base.html.twig' %} {% block title %}{{category.title}}{% endblock %} {% block body %}

{{category.title}}

{{category.description}}

{% if category.type == 2 %} {% set entity = category.articles %} {% else %} {% set entity = category.courses %} {% endif %} {% for article in entity %}
{{imgNoFile(article.cover.name, article.cover.title, 'auto', 'auto', 'img-fluid')|raw}}

{{ article.title}}

Dernière modification : Il y a {{ relativeTime(article.updatedAt)}}

{{ article.description}}

{% endfor %}
{% endblock %}