{% extends 'master.twig' %} {% from 'macros.twig' import news_post %} {% set title = post.title %} {% set commentsCategory = 'news-' ~ post.category ~ '-' ~ post.id %} {% set comments = post.comments %} {% block content %}
{{ post.title }}
{{ news_post(post.id, post.text, post.created, post.userData) }} {% include 'elements/comments.twig' %}
{% endblock %}