{% extends 'base.html.twig' %} {% block title %}Post index{% endblock %} {% block body %}
| 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 | |||||||