1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
{# This is a modified RTD versions.html tailored for the Biopython project #}
{% if READTHEDOCS or display_version_footer %}
{# Add rst-badge after rst-versions for small badge style. #}
<div class="rst-versions" data-toggle="rst-versions" role="note" aria-label="versions">
<span class="rst-current-version" data-toggle="rst-current-version">
Biopython v: {{ current_version }}
<span class="fa fa-caret-down"></span>
</span>
<div class="rst-other-versions">
<dl>
<dt>{{ _('Versions') }}</dt>
{% for slug, url in versions %}
<dd><a href="{{ url }}">{{ slug }}</a></dd>
{% endfor %}
</dl>
<dl>
<dt>{{ _('Biopython Project') }}</dt>
<dd>
<a href="{{ project_home_url }}" class="icon icon-home"> {{ _(' Homepage') }}</a>
</dd>
<dd>
<a href="{{ project_github_url }}" class="fa fa-github"> {{ _(' On GitHub') }}</a>
</dd>
</dl>
</div>
</div>
{% endif %}
|