{% extends "layout/navigation.html" %}
{* vim: set et ai ts=2 sw=2 enc=utf-8: *}
{% block "title" %}{% trans "View Forum" %} - {{ forum.name|e }}{% endblock %}
{% block "html/head" %}
{% endblock %}
{% block "trace" %}
»
{% for item in pathbar %}
{{ item.name|e }} {% if not loop.last %}»{% endif %}
{% endfor %}
{% endblock %}
{% block "content" %}
{{ forum.name|e }} |
{{ forum.description|e }}
|
{% if forum.forums %}
{% define forums forum.forums %}
{% include "partial/forum.html" %}
{% endif %}
{% trans "Create new thread" %}
|
{% endblock %}