{% extends "base.html" %} {% block title %}{{ board.name }} - {{ config.BBS_NAME }}{% endblock %} {% block content %} {% if board.ansi_banner %}
{{ board.ansi_banner }}
{% endif %}
{{ board.name }} {% if current_user.is_authenticated %}
{% set _sub = (current_user.board_subs.filter_by(board_id=board.id).first()) if current_user.board_subs else None %}
New Post
{% endif %}

{{ board.description }}

Topics
{% if posts %} {% if pagination.pages > 1 %} {% endif %} {% else %}

No posts in this board yet. Be the first to post!

{% if current_user.is_authenticated %} Create First Post {% endif %} {% endif %}
{% endblock %}