python-compute/docs/source/_templates/versioning.html

9 lines
221 B
HTML
Raw Normal View History

2023-11-06 12:52:19 +03:00
{% if versions %}
2023-12-01 01:45:50 +03:00
<h3 style="margin-top: 16px">{{ _('Versions') }}</h3>
2023-11-06 12:52:19 +03:00
<ul>
{%- for item in versions %}
2023-12-01 01:45:50 +03:00
<li><a style="font-size: 120%" href="{{ item.url }}">{{ item.name }}</a></li>
2023-11-06 12:52:19 +03:00
{%- endfor %}
</ul>
{% endif %}