{% extends "base.html" %} {% block title %}BBS Directory — {{ config.BBS_NAME }}{% endblock %} {% block content %}

BBS Directory

Browse local and worldwide BBS listings

{% if q %}Clear{% endif %}
{% if tab == 'local' %} {% if peers %}
{% for p in peers %}
{{ p.name }}
{{ p.hostname }}{% if p.telnet_port and p.telnet_port != 23 %}:{{ p.telnet_port }}{% endif %}
{% if p.location %}
{{ p.location }}
{% endif %} {% if p.software %}
{{ p.software }}
{% endif %} {% if p.description %}

{{ p.description }}

{% endif %}
{% endfor %}
{% else %}
No local BBSes listed yet. Be the first to add yours!
{% endif %} {% else %} {% set src = tab %} {% set d = ext_data.get(src) %} {% if d %}

{% if d.last_updated %} Last updated {{ d.last_updated.strftime('%Y-%m-%d %H:%M') }} UTC (refreshes every {{ 6 }} hours) {% else %} Loading… check back in a moment. {% endif %}

{% if current_user.is_admin %}
{% endif %}
{% if d.rows %}
{% for e in d.rows %}
{{ e.name }}
{% if e.telnet_host %}
{{ e.telnet_host }}{% if e.telnet_port and e.telnet_port != 23 %}:{{ e.telnet_port }}{% endif %}
{% endif %} {% if e.sysop %}
{{ e.sysop }}
{% endif %} {% if e.location %}
{{ e.location }}
{% endif %} {% if e.software %}
{{ e.software }}
{% endif %} {% if e.description %}

{{ e.description }}

{% endif %}
{% endfor %}
{% else %}
{% if d.last_updated %} No entries match your search. {% else %} Data is loading in the background — refresh the page in a moment. {% endif %}
{% endif %} {% endif %} {% endif %}
{% endblock %}