{% extends "base.html" %} {% block title %}{{ board.name }} - {{ config.BBS_NAME }}{% endblock %} {% block content %} {% if board.ansi_banner %}
{{ board.ansi_banner }}
{% endif %}
{{ board.description }}
{{ post.content[:150] }}{% if post.content|length > 150 %}...{% endif %}
by {{ post.author.username }} | {{ post.replies.count() }} {% if post.replies.count() == 1 %}reply{% else %}replies{% endif %} {% endfor %}No posts in this board yet. Be the first to post!
{% if current_user.is_authenticated %} Create First Post {% endif %} {% endif %}