{% extends 'base.html.twig' %} {% block title %}Blog Management — Admin{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}
Back to Dashboard {% for message in app.flashes('success') %}
{{ message }}
{% endfor %}

Blog Posts

New Post
{% if posts|length > 0 %} {% for post in posts %} {% endfor %}
Cover Title Author Languages Status Published Actions
{% if post.coverImage %} {% else %}
{% endif %}
{% if post.titleAr %} {{ post.titleAr }} {% endif %} {% if post.titleEn %} {{ post.titleEn }} {% endif %} {{ post.authorName }} {% if post.hasArabic() %}AR{% endif %} {% if post.hasEnglish() %}EN{% endif %} {% if post.isPublished() %} Published {% else %} Draft {% endif %} {{ post.publishedAt|date('Y-m-d') }} Edit {% if post.isPublished() %} View {% endif %}
{% else %}

No blog posts yet. Create your first post!

{% endif %}
{% endblock %}