{% extends 'news/master.twig' %} {% from 'macros.twig' import container_title %} {% from '_layout/comments.twig' import comments_section %} {% from 'news/macros.twig' import news_post %} {% set title = post_info.title ~ ' :: News' %} {% set canonical_url = url('news-post', {'post': post_info.id}) %} {% set manage_link = url('manage-news-post', {'post': post_info.id}) %} {% block content %} {{ news_post(post_info, post_category_info, post_user_info, post_user_colour) }} {% if comments_info is defined %}
{{ container_title(' Comments') }} {{ comments_section(comments_info, canonical_url) }}
{% endif %} {% endblock %}