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

Welcome to {{ config.BBS_NAME }}

{{ config.BBS_DESCRIPTION }}

Features

A-Net Online

Getting Started

To get started, register an account or login if you already have one.

Old-School Terminal Access

For the classic BBS experience, connect via any of these protocols (whichever the sysop has enabled):

{% set host = config.BBS_DOMAIN or request.host.split(':')[0] %}
{% if config.TELNET_ENABLED %}Telnet:  {{ host }}  port {{ config.TELNET_PORT }}
{% endif %}{% if config.SSH_ENABLED %}SSH:     {{ host }}  port {{ config.SSH_PORT }}
{% endif %}{% if config.RLOGIN_ENABLED %}rlogin:  {{ host }}  port {{ config.RLOGIN_PORT }}
{% endif %}
{% if not (config.TELNET_ENABLED or config.SSH_ENABLED or config.RLOGIN_ENABLED) %}

Terminal access is currently disabled — web only.

{% endif %}

Nodes: this BBS supports up to {{ config.BBS_NODES or 8 }} concurrent terminal connections.

{% endblock %}