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

Post Details

Id {{ post.id }}
Title {{ post.title }}
Subtitle {{ post.subtitle }}
Content {{ post.content }}
Content 1 {{ post.content1 }}
Content 2 {{ post.content2 }}
Image {{ post.image }}
Created At {{ post.createdAtPost ? post.createdAtPost|date('Y-m-d H:i:s') : '' }}
Is Published {{ post.isPublished ? 'Yes' : 'No' }}
{{ include('posts/_delete_form.html.twig') }}
{% endblock %}