{% extends 'admin/layout.html.twig' %} {% block body_id 'admin_post_show' %} {% block main %}

{{ post.title }}

{{ post.publishedAt|format_datetime('long', 'medium', '', 'UTC') }} {{ post.author.fullName }}

{{ 'label.summary'|trans }}: {{ post.summary }}

{{ post.content|markdown_to_html|sanitize_html }} {{ include('blog/_post_tags.html.twig') }} {% endblock %} {% block sidebar %}
{{ 'action.edit_contents'|trans }}
{{ include('admin/blog/_delete_form.html.twig', {post: post}, with_context = false) }}
{{ parent() }} {{ show_source_code(_self) }} {% endblock %}