{% extends "base.html" %} {% block title %}Home - {{ config.BBS_NAME }}{% endblock %} {% block content %}

{{ config.BBS_NAME }}

{{ config.BBS_DESCRIPTION }}

{% if not current_user.is_authenticated %}

New here?

{{ config.BBS_NAME }} is a modern BBS in the FidoNet / Synchronet tradition โ€” message boards, file libraries, door games (Trade Wars, LORD), inter-BBS chat, and federation with other ANetBBS systems. Sign up for a free account or dial in over telnet / SSH / rlogin.

{% if stats.total_users %}{{ stats.total_users }} active members ยท{% endif %} {% if stats.total_posts %}{{ stats.total_posts }} posts ยท{% endif %} {% if stats.total_boards %}{{ stats.total_boards }} boards ยท{% endif %} Sysop: {{ config.SYSOP_NAME or 'Sysop' }} {% if config.SYSOP_EMAIL %}<{{ config.SYSOP_EMAIL }}>{% endif %}

{% endif %} {% if qotd %}
MOTD: {{ qotd }}
{% endif %} {% if active_poll %}
Active Poll
{{ active_poll.question }} Vote →
{% endif %}
Recent Posts
Message Boards
{% if boards %}
{% for board in boards %}
{{ board.name }}

{{ board.description }}

{% endfor %}
{% else %}

No boards available.

{% endif %}
{% if bulletins %}
Bulletins
{% for bulletin in bulletins %}
{{ bulletin.title }}

{{ bulletin.content }}

Posted {{ bulletin.created_at.strftime('%Y-%m-%d') }}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endif %}
Statistics

Boards: {{ stats.total_boards }}

Posts: {{ stats.total_posts }}

Active Users: {{ stats.total_users }}

Quick Links
{% if online_users %}
Who's Online ({{ online_users | length }}) all
{% endif %} {% if todays_birthdays %}
๐ŸŽ‚ Birthdays Today
{% for u in todays_birthdays %}
{{ u.username }} โ€” wish them a happy one!
{% endfor %}
{% endif %} {% if active_broadcasts %}
Sysop Broadcasts
{% for b in active_broadcasts %}
{{ b.sender.username if b.sender else 'sysop' }}: {{ b.text }}
{{ b.created_at.strftime('%Y-%m-%d %H:%M') }}
{% endfor %}
{% endif %} {% if today_stats %}
Last 24 hours
  • ๐Ÿ“ {{ today_stats.posts }} board posts
  • ๐Ÿ“จ {{ today_stats.echomail }} echomail
  • ๐Ÿ“ฃ {{ today_stats.shouts }} shouts
  • ๐Ÿ‘‹ {{ today_stats.new_users }} new users
  • {% if file_area_count %}
  • ๐Ÿ“‚ {{ file_area_count }} file areas
  • {% endif %}
{% endif %} {% if recent_shouts and current_user.is_authenticated %}
Latest Shouts all
{% for s in recent_shouts %}
{{ s.user.username }}: {{ s.text }}
{{ s.created_at.strftime('%H:%M') }}
{% endfor %}
{% endif %} {% if latest_echomail and current_user.is_authenticated %}
Latest Echomail all
{% endif %}
{% endblock %}