{% extends 'base.html.twig' %} {% block title %}{{ post.title }} | Blog TROPO{% endblock %} {% block meta_description %}{{ post.excerpt }}{% endblock %} {% block og_type %}article{% endblock %} {% block meta_extra %} {% endblock %} {% block head_extra %} {% endblock %} {% block body %}
← {{ 'blog.show.all_posts'|trans }}
{% for tag in post.tags %} {{ tag }} {% endfor %}

{{ post.title }}

{{ 'blog.show.image_placeholder'|trans }}
{{ post.content|raw }}
{# Komentarze #}

{{ 'blog.show.comments_title'|trans({'%count%': post.approvedComments|length}) }}

{% for flash in app.flashes('success') %}
{{ flash }}
{% endfor %} {% for flash in app.flashes('error') %}
{{ flash }}
{% endfor %} {% for comment in post.approvedComments %}
{{ comment.authorName }} {{ comment.createdAt|date('d.m.Y H:i') }}

{{ comment.content }}

{% else %}

{{ 'blog.show.no_comments'|trans }}

{% endfor %}

{{ 'blog.show.add_comment'|trans }}

{{ 'blog.show.more_adventures'|trans }}

{% endblock %}