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

{#
Crear Post
#}
{#
{% for post in posts %}

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

{{ post.title }}

{% if post.status == 'draft' %} {{ post.status }} {% endif %} {% if post.status == 'published' %} {{ post.status }} {% endif %} {% if post.status == 'scheduled' %} {{ post.status }} {% endif %} {% if post.status == 'locked' %} {{ post.status }} {% endif %} {% if post.status == 'archived' %} {{ post.status }} {% endif %} {% if post.status == 'hidden' %} {{ post.status }} {% endif %}
{% endfor %}
#}
{% for post in posts %} {% endfor %}
{% endblock %}