{% extends 'base/base.html' %} {% block content %} {% if board.parent %} {{ breadcrumb(hrefs={board.parent.name:url_for('forums.board',boardId=board.parent_id)},active=board.name) }} {% else %} {{ breadcrumb(active=board.name) }} {% endif %} {% from 'board/_macro.html' import board_body %}
{% for child in board.children -%} {{ board_body(child) }} {% else %} {{ board_body(board) }} {%- endfor %}
{% include "board/topic.html" %}
{{ panel_base.board() }}
{% endblock %}