{% extends "base.html" %} {% block title %}About - {{ config.BBS_NAME }}{% endblock %} {% block content %}
{{ config.BBS_DESCRIPTION }}
To get started, register an account or login if you already have one.
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.