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

Post index

{% for post in posts %} {% else %} {% endfor %}
Id UserId Title Body actions
{{ post.id }} {{ post.userId }} {{ post.title }} {{ post.body }} {# show edit #} {{ include('post/_delete_form.html.twig') }}
no records found
{# Create new #} {% endblock %}