2018-05-18 03:20:27 +02:00
|
|
|
{% extends '@mio/forum/master.twig' %}
|
2018-05-20 22:16:30 +02:00
|
|
|
{% from '@mio/macros.twig' import navigation, pagination %}
|
2018-05-20 22:12:45 +02:00
|
|
|
{% from '@mio/forum/macros.twig' import forum_category_listing, forum_topic_listing, forum_category_buttons %}
|
2018-05-18 03:20:27 +02:00
|
|
|
|
|
|
|
{% set title = forum_info.forum_name %}
|
|
|
|
{% set canonical_url = '/forum/forum.php?f=' ~ forum_info.forum_id %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{ navigation(forum_breadcrumbs, forum_breadcrumbs|last, true, null, 'left') }}
|
|
|
|
|
|
|
|
{% if forum_info.forum_subforums|length > 0 or forum_info.forum_type == 1 %}
|
|
|
|
{{ forum_category_listing(forum_info.forum_subforums, 'Forums') }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if forum_info.forum_type == 0 %}
|
2018-05-22 04:09:53 +02:00
|
|
|
{% set fcbuttons = app.hasActiveSession ? forum_category_buttons(forum_info) : '' %}
|
2018-05-21 18:37:17 +02:00
|
|
|
{% set fcpagination = pagination(forum_info.forum_topic_count, forum_range, forum_offset, canonical_url) %}
|
2018-05-20 22:12:45 +02:00
|
|
|
|
|
|
|
{{ fcbuttons }}
|
|
|
|
{{ fcpagination }}
|
2018-05-18 03:20:27 +02:00
|
|
|
{{ forum_topic_listing(forum_topics) }}
|
2018-05-20 22:12:45 +02:00
|
|
|
{{ fcpagination }}
|
|
|
|
{{ fcbuttons }}
|
2018-05-18 03:20:27 +02:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{{ navigation(mio_navigation, '/forum/') }}
|
|
|
|
{% endblock %}
|