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

Post index

{% for post in posts %} {% else %} {% endfor %}
Id Title Content Created_at Author Subtitle Public actions
{{ post.id }} {{ post.title }} {{ post.content }} {{ post.createdAt ? post.createdAt|date('Y-m-d H:i:s') : '' }} {{ post.author }} {{ post.subtitle }} {{ post.public ? 'Yes' : 'No' }} show edit
no records found
Create new {% endblock %}