2018-05-20 20:12:45 +00:00
|
|
|
{% extends '@mio/forum/master.twig' %}
|
2018-05-20 20:16:30 +00:00
|
|
|
{% from '@mio/macros.twig' import navigation, pagination %}
|
2018-05-22 01:26:47 +00:00
|
|
|
{% from '@mio/forum/macros.twig' import forum_post_listing, forum_topic_buttons, forum_posting_form %}
|
2018-05-20 20:12:45 +00:00
|
|
|
|
|
|
|
{% set title = topic_info.topic_title %}
|
2018-05-21 23:05:25 +00:00
|
|
|
{% set base_url = '/forum/topic.php?t=' ~ topic_info.topic_id %}
|
|
|
|
{% set canonical_url = base_url %}
|
|
|
|
|
2018-05-22 02:09:53 +00:00
|
|
|
{% set ftbuttons = app.hasActiveSession ? forum_topic_buttons(topic_info) : '' %}
|
2018-05-21 23:05:25 +00:00
|
|
|
{% set ftpagination = pagination(topic_info.topic_post_count, topic_range, topic_offset, base_url) %}
|
2018-05-20 20:12:45 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{ navigation(topic_breadcrumbs, topic_breadcrumbs|last, true, null, 'left') }}
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="container__title">
|
|
|
|
{{ topic_info.topic_title }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-05-21 23:05:25 +00:00
|
|
|
{{ ftbuttons }}
|
|
|
|
{{ ftpagination }}
|
2018-05-20 20:12:45 +00:00
|
|
|
{{ forum_post_listing(topic_posts, topic_info.topic_first_post_id) }}
|
2018-05-21 23:05:25 +00:00
|
|
|
{{ ftpagination }}
|
2018-05-22 01:26:47 +00:00
|
|
|
|
2018-05-22 02:09:53 +00:00
|
|
|
{% if app.hasActiveSession %}
|
|
|
|
{{ forum_posting_form('Reply', topic_info.topic_id, true, 'reply', true) }}
|
|
|
|
|
|
|
|
<script>
|
|
|
|
window.addEventListener('load', () => {
|
|
|
|
closeContainer('reply');
|
|
|
|
document.getElementById('reply').children[0].addEventListener('mouseover', () => openContainer('reply'));
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
2018-05-20 20:12:45 +00:00
|
|
|
|
|
|
|
{{ navigation(mio_navigation, '/forum/') }}
|
|
|
|
{% endblock %}
|