{% extends "base.html" %} {% block title %}Wiki — {{ config.BBS_NAME or 'ANetBBS' }}{% endblock %} {% block content %} {% include "wiki/_layout.html" %}

{{ config.BBS_NAME or 'ANetBBS' }} Wiki

{{ total }} page{{ '' if total == 1 else 's' }} — collaborative documentation maintained by the community.

{% if home and body_html %}
Last edited {{ home.updated_at.strftime('%Y-%m-%d %H:%M UTC') }} {% if home.updated_by %} by {{ home.updated_by.username }} {% endif %} · history {% if current_user.is_authenticated %} · edit {% endif %}
{{ body_html }}
{% else %}

The wiki is empty.

The home page hasn't been written yet. {% if current_user.is_authenticated %} Create the home page {% else %} Log in to create it. {% endif %}

{% endif %}
Recent edits
    {% for p in recent %}
  • {{ p.title }}
    {{ p.updated_at.strftime('%m-%d %H:%M') }}{% if p.updated_by %} · {{ p.updated_by.username }}{% endif %}
  • {% else %}
  • No edits yet.
  • {% endfor %}
{% endblock %}