misuzu/templates/forum/forum.twig

24 lines
879 B
Twig
Raw Normal View History

2018-08-15 03:12:58 +02:00
{% extends 'forum/master.twig' %}
2018-10-25 02:15:23 +02:00
{% from 'forum/macros.twig' import forum_category_listing, forum_topic_listing, forum_category_buttons, forum_header, forum_category_tools %}
2018-05-18 03:20:27 +02:00
{% set title = forum_info.forum_name %}
{% set canonical_url = url_construct('/forum/forum.php', {
2018-07-07 22:11:16 +02:00
'f': forum_info.forum_id,
'o': forum_offset,
}) %}
2018-05-18 03:20:27 +02:00
{% block content %}
2018-10-22 00:11:14 +02:00
{{ forum_header(forum_info.forum_name, forum_breadcrumbs, true) }}
2018-05-18 03:20:27 +02:00
2018-10-22 00:11:14 +02:00
{% if forum_may_have_children and forum_info.forum_subforums|length > 0 %}
{{ forum_category_listing(forum_info.forum_subforums, 'Forums') }}
{% endif %}
2018-05-18 03:20:27 +02:00
2018-10-22 00:11:14 +02:00
{% if forum_may_have_topics %}
2018-10-25 02:15:23 +02:00
{% set category_tools = forum_category_tools(forum_info, forum_perms, forum_range, forum_offset) %}
{{ category_tools }}
2018-10-22 00:11:14 +02:00
{{ forum_topic_listing(forum_topics) }}
2018-10-25 02:15:23 +02:00
{{ category_tools }}
2018-10-22 00:11:14 +02:00
{% endif %}
2018-05-18 03:20:27 +02:00
{% endblock %}