misuzu/templates/forum/index.twig

33 lines
1.2 KiB
Twig
Raw Normal View History

2018-08-15 01:12:58 +00:00
{% extends 'forum/master.twig' %}
2018-10-22 19:53:21 +00:00
{% from 'macros.twig' import container_title %}
2018-08-15 01:12:58 +00:00
{% 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 %}
{% if not forum_empty %}
{% for category in forum_categories %}
{% if category.forum_children > 0 %}
2018-10-16 21:38:17 +00:00
{{ forum_category_listing(category.forum_subforums, category.forum_name, category.forum_colour) }}
{% endif %}
{% endfor %}
2018-05-18 01:20:27 +00:00
2018-12-29 03:17:34 +00:00
{#
<div class="container forum__actions">
<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-12-29 03:17:34 +00:00
</div>#}
{% else %}
<div class="container">
{{ container_title('<i class="fas fa-comment-slash fa-fw"></i> Forums') }}
<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 %}