2018-08-15 01:12:58 +00:00
|
|
|
{% extends 'forum/master.twig' %}
|
|
|
|
{% from 'forum/macros.twig' import forum_category_listing %}
|
2018-05-18 01:20:27 +00:00
|
|
|
|
|
|
|
{% set title = 'Forum Listing' %}
|
|
|
|
{% set canonical_url = '/forum/' %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-05-24 00:57:13 +00:00
|
|
|
{% if not forum_empty %}
|
|
|
|
{% for category in forum_categories %}
|
|
|
|
{% if category.forum_children > 0 %}
|
|
|
|
{{ forum_category_listing(category.forum_subforums, category.forum_name) }}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2018-05-18 01:20:27 +00:00
|
|
|
|
2018-09-28 16:40:41 +00:00
|
|
|
<div class="container container--new forum__actions">
|
|
|
|
<a class="input__button input__button--new forum__actions__button">Mark All Read</a>
|
|
|
|
<a class="input__button input__button--new forum__actions__button">Unanswered Posts</a>
|
|
|
|
<a class="input__button input__button--new forum__actions__button">New Posts</a>
|
|
|
|
<a class="input__button input__button--new forum__actions__button">Your Posts</a>
|
2018-05-18 01:20:27 +00:00
|
|
|
</div>
|
2018-05-24 00:57:13 +00:00
|
|
|
{% else %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="container__title">Forums</div>
|
|
|
|
<div class="container__content">
|
|
|
|
<p>There are no forums yet, check back later!</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-05-18 01:20:27 +00:00
|
|
|
{% endblock %}
|