2018-05-18 01:20:27 +00:00
|
|
|
{% extends '@mio/forum/master.twig' %}
|
|
|
|
{% from '@mio/macros.twig' import navigation %}
|
|
|
|
{% from '@mio/forum/macros.twig' import forum_category_listing %}
|
|
|
|
|
|
|
|
{% set title = 'Forum Listing' %}
|
|
|
|
{% set canonical_url = '/forum/' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% for category in forum_categories %}
|
|
|
|
{% if category.forum_children > 0 %}
|
|
|
|
{{ forum_category_listing(category.forum_subforums, category.forum_name) }}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
2018-05-20 01:16:29 +00:00
|
|
|
<div class="container forum__actions">
|
2018-05-18 01:20:27 +00:00
|
|
|
<div class="container__title">Actions</div>
|
2018-05-20 01:16:29 +00:00
|
|
|
<div class="container__content forum__actions__content">
|
|
|
|
<a class="input__button forum__actions__button">Mark All Read</a>
|
|
|
|
<a class="input__button forum__actions__button">Unanswered Posts</a>
|
|
|
|
<a class="input__button forum__actions__button">New Posts</a>
|
|
|
|
<a class="input__button forum__actions__button">Your Posts</a>
|
2018-05-18 01:20:27 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ navigation(mio_navigation, '/forum/') }}
|
|
|
|
{% endblock %}
|
|
|
|
|