mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
- 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.
15 lines
377 B
HTML
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 %}
|