{% extends 'base.html.twig' %} {% block title %}Post{% endblock %} {% block body %}
| Id | {{ post.id }} |
|---|---|
| Title | {{ post.title }} |
| Content | {{ post.content }} |
| Created_at | {{ post.createdAt ? post.createdAt|date('Y-m-d H:i:s') : '' }} |
| Author | {{ post.author }} |
| Subtitle | {{ post.subtitle }} |
| Public | {{ post.public ? 'Yes' : 'No' }} |