mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
13 lines
385 B
HTML
13 lines
385 B
HTML
{% if versions %}
|
|
<h3>{{ _('Doc Versions') }}</h3>
|
|
<ul>
|
|
{% for item in versions %}
|
|
<li><a href="{{ item.url }}">{{ item.release }} ({{ item.name }} branch)</a></li>
|
|
{%- endfor %}
|
|
{% if legacy_versions %} <ul>
|
|
{%- for item in legacy_versions %}
|
|
<li><a href="{{ item.url }}">{{ item.release }} ({{ item.name }} branch)</a></li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
{% endif %}
|