{% extends "base.html" %} {% block title %}My Pages — {{ config.BBS_NAME }}{% endblock %} {% block content %}

My Personal Pages

{% if not enabled %}
Personal pages aren't enabled on this BBS. The sysop can turn them on by setting PERSONAL_PAGES_ENABLED=true in the .env and restarting anetbbs-web. Until then, files you upload here are saved but not served.
{% else %}

Files you upload here are served at {{ request.url_root }}~{{ username }}/ (and individual files at {{ request.url_root }}~{{ username }}/<filename>). Drop in an index.html to make the root URL render.

{% endif %}
{% for f in files %} {% else %} {% endfor %}
FileSize
{{ f.name }} {% if f.is_index %}index{% endif %} {{ '%.1f'|format(f.size / 1024) }} KB
No files yet — upload an index.html to get started.
Tips
{% endblock %}