evennia/docs/source/_templates/versioning.html
PowershellNinja e90e568475 Upgrade Sphinx docs toolchain: modern CSS, version sidebar, and search fixes
- Remove legacy CSS and templates.
- Add custom.css ported from live nature theme for Sphinx 7.x.
- Update conf.py, drop sphinx-multiversion.
- Fix SearchBar and Doc Versions sidebar.
- Update requirements.txt to latest stable module versions.
2025-08-04 19:37:20 +02:00

15 lines
377 B
HTML

{% if versions or legacy_versions %}
<h3>{{ _('Doc Versions') }}</h3>
<ul>
{% for item in versions %}
<li>
<a href="{{ item.url }}">{{ item.release }} ({{ item.name }} branch)</a>
</li>
{% endfor %}
{% for item in legacy_versions %}
<li>
<a href="{{ item.url }}">{{ item.release }} branch (outdated)</a>
</li>
{% endfor %}
</ul>
{% endif %}