misuzu/templates/forum/topic.twig

29 lines
924 B
Twig
Raw Normal View History

2018-08-15 03:12:58 +02:00
{% extends 'forum/master.twig' %}
2018-10-21 23:53:32 +02:00
{% from 'macros.twig' import pagination %}
2018-05-23 03:41:57 +02:00
{%
2018-08-15 03:12:58 +02:00
from 'forum/macros.twig'
2018-05-23 03:41:57 +02:00
import
forum_post_listing,
forum_topic_buttons,
forum_topic_locked,
2018-10-25 02:15:23 +02:00
forum_header,
forum_topic_tools
2018-05-23 03:41:57 +02:00
%}
2018-05-20 22:12:45 +02:00
{% set title = topic_info.topic_title %}
{% set canonical_url = url_construct('/forum/topic.php', {
2018-07-07 22:11:16 +02:00
't': topic_info.topic_id,
2019-01-03 01:33:02 +01:00
'p': topic_pagination.page > 1 ? topic_pagination.page : 0,
2018-07-07 22:11:16 +02:00
}) %}
2018-05-22 01:05:25 +02:00
2019-01-03 01:33:02 +01:00
{% set topic_tools = forum_topic_tools(topic_info, topic_pagination, can_reply) %}
2018-05-20 22:12:45 +02:00
{% block content %}
{{ forum_header(topic_info.topic_title, topic_breadcrumbs, false, canonical_url) }}
2018-10-22 00:11:14 +02:00
{{ forum_topic_locked(topic_info.topic_locked, topic_info.topic_archived) }}
2018-10-25 02:15:23 +02:00
{{ topic_tools }}
{{ forum_post_listing(topic_posts, current_user.user_id|default(0), topic_perms) }}
2018-10-25 02:15:23 +02:00
{{ topic_tools }}
{{ forum_header('', topic_breadcrumbs) }}
2018-05-20 22:12:45 +02:00
{% endblock %}