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

Post index

{% for post in posts %} {% else %} {% endfor %}
Id Title Summary Content Created_at Author Image actions
{{ post.id }} {{ post.title }} {{ post.summary }} {{ post.content }} {{ post.createdAt ? post.createdAt|date('Y-m-d H:i:s') : '' }} {% if post.user %} {{ post.user.email }} {% else %} Annonymous {% endif %} {{ post.image }} show edit
no records found
Create new {% endblock %}