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

{{ 'title.post_list'|trans }}

{% for post in posts %} {# it's not mandatory to set the timezone in localizeddate(). This is done to avoid errors when the 'intl' PHP extension is not available and the application is forced to use the limited "intl polyfill", which only supports UTC and GMT #} {% else %} {% endfor %}
{{ 'label.title'|trans }} {{ 'label.published_at'|trans }} {{ 'label.actions'|trans }}
{{ post.title }}{{ post.publishedAt|format_datetime('medium', 'short', '', 'UTC') }}
{{ 'post.no_posts_found'|trans }}
{% endblock %} {% block sidebar %}
{{ 'action.create_post'|trans }}
{{ parent() }} {{ show_source_code(_self) }} {% endblock %}