{% extends 'base.welcome.html.twig' %} {% block title %}Detalles del post{% endblock %} {% block content %} {% import 'breadcrumbs.html.twig' as breadcrumbs %} {% import 'comments.html.twig' as comments %}
{# Breadcrumbs #} {{ breadcrumbs.breadcrumbs([ {'label': 'Show More Posts', 'url': path('welcome_post_published')}, ]) }} {# \breadcrumbs #}

{{ post.title() }}

debate opinión entretenimiento

Fecha de Publicación: {{ post.creationDate|date('d/m/Y') }}

{{ post.type() }}
{{ post.getcontent() | raw }}

Discussion ({{post.getComments()|length}})

{{ form_start(formComment) }} {{ form_row(formComment.content, {'label': 'Comment'}) }} {{ form_end(formComment) }} {% for comment in post.getComments() %}

DesconocidoDesconocido

{{ comment.getcontent() }}

{% endfor %}
{% for post in posts %}

Fecha de Publicación: {{ post.creationDate|date('d/m/Y') }}

{{ post.title }}

{% endfor %}
{# Breadcrumbs #} {{ breadcrumbs.breadcrumbs([ {'label': 'Show More Posts', 'url': path('welcome_post_published')}, ]) }} {# \breadcrumbs #} {% endblock %}