{% extends '@SyliusShop/layout.html.twig' %} {% block title %} {{ post.title }} - {{ parent() }} {% endblock %} {% block content %}
{% if post.category is defined and post.category.name is defined %} {{ post.category.name }} {% endif %}

{{ post.title }}

{% set img = post.image is defined and post.image ? post.image : null %} {% if img %} blog-img {% endif %}
{{ post.content|html_unescape }}
{% if post.tags is defined and post.tags %}
Tags :
{% endif %}
{% endblock %}