2018-08-15 01:12:58 +00:00
|
|
|
{% extends 'news/master.twig' %}
|
2018-10-22 19:53:21 +00:00
|
|
|
{% from 'macros.twig' import container_title %}
|
2018-08-15 01:12:58 +00:00
|
|
|
{% from '_layout/comments.twig' import comments_section %}
|
2018-12-11 01:20:18 +00:00
|
|
|
{% from 'news/macros.twig' import news_post %}
|
2018-04-14 02:58:53 +00:00
|
|
|
|
2020-05-16 22:35:11 +00:00
|
|
|
{% 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}) %}
|
2018-04-14 02:58:53 +00:00
|
|
|
|
2018-08-12 18:49:21 +00:00
|
|
|
{% block content %}
|
2020-05-16 22:35:11 +00:00
|
|
|
{{ news_post(post_info) }}
|
2018-04-16 00:33:54 +00:00
|
|
|
|
2020-05-18 21:27:34 +00:00
|
|
|
{% if comments_info is defined %}
|
2018-08-10 04:20:54 +00:00
|
|
|
<div class="container">
|
2018-12-27 02:59:57 +00:00
|
|
|
{{ container_title('<i class="fas fa-comments fa-fw"></i> Comments') }}
|
2020-05-18 21:27:34 +00:00
|
|
|
{{ comments_section(comments_info, comments_user) }}
|
2018-04-16 00:33:54 +00:00
|
|
|
</div>
|
2018-08-10 04:20:54 +00:00
|
|
|
{% endif %}
|
2018-04-14 02:58:53 +00:00
|
|
|
{% endblock %}
|