mirror of
https://github.com/Start9Labs/documentation.git
synced 2026-03-26 10:21:53 +00:00
16 lines
352 B
HTML
16 lines
352 B
HTML
{% if versions %}
|
|
<h3>{{ _('Branches') }}</h3>
|
|
<ul>
|
|
{%- for item in versions.branches %}
|
|
<li><a href="{{ item.url }}">{{ item.name }}</a></li>
|
|
{%- endfor %}
|
|
</ul>
|
|
<h3>{{ _('Tags') }}</h3>
|
|
<ul>
|
|
{%- for item in versions.tags %}
|
|
<li><a href="{{ item.url }}">{{ item.name }}</a></li>
|
|
{%- endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
<h1>*testing versions*</h1>
|