{% extends 'FrontofficeAr/base.html.twig' %} {% block activePress %}main-menu-active{% endblock %} {% block titre %}الجامعة في الصحافة{% endblock %} {% block body %}

الجامعة في الصحافة

{#
{% for a in articles %} {% endfor %} {% if articles|length == 0 %}

لا توجد مقالات

{% endif %}
#}
{% if articles|length != 0 %} {% set index = 0 %} {% for a in articles %} {% if index != 0 %}
{{ a.date|date("d-m-Y") }}

{{ a.titreAr|length > 100 ? a.titreAr|slice(0, 100) ~ '...' : a.titreAr }}

اقرأ المزيد
{% endif %} {% set index = index+1 %} {% endfor %} {% else %}

لا يوجد مقالات في الوقت الحالي

{% endif %}
{% endblock %}