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

Post index

{% for post in posts %} {% else %} {% endfor %}
Id Title Description Image Content Pinned CreatedAt UpdatedAt actions
{{ post.id }} {{ post.title }} {{ post.description }} {{ post.image }} {{ post.content }} {{ post.pinned ? 'Yes' : 'No' }} {{ post.createdAt ? post.createdAt|date('Y-m-d H:i:s') : '' }} {{ post.updatedAt ? post.updatedAt|date('Y-m-d H:i:s') : '' }} show edit
no records found
Create new {% endblock %}