misuzu/templates/news/post.twig
2025-02-16 00:19:42 +00:00

16 lines
649 B
Twig

{% extends 'news/master.twig' %}
{% from 'macros.twig' import container_title %}
{% 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) }}
<div class="container">
{{ container_title('<i class="fas fa-comments fa-fw"></i> Comments') }}
<div class="js-comments" data-category="{{ post_info.commentsCategoryName }}"></div>
</div>
{% endblock %}