{% extends 'forum/master.twig' %} {% from 'forum/macros.twig' import forum_category_listing %} {% set title = 'Forum Listing' %} {% set canonical_url = '/forum/' %} {% block content %} {% 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 %}
Actions
Mark All Read Unanswered Posts New Posts Your Posts
{% else %}
Forums

There are no forums yet, check back later!

{% endif %} {% endblock %}