Skip to content

Instantly share code, notes, and snippets.

@zonca
Last active January 23, 2022 13:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zonca/ad17f00a91355eaedd221abb34d75c11 to your computer and use it in GitHub Desktop.
Save zonca/ad17f00a91355eaedd221abb34d75c11 to your computer and use it in GitHub Desktop.
Sphinx templates for sphinx-multiversion
{% if versions %}
<h3>{{ _('Releases') }}</h3>
<ul>
{%- for item in versions.tags %}
<li><a href="{{ item.url }}">{{ item.name }}</a></li>
{%- endfor %}
</ul>
<h3>{{ _('In Development') }}</h3>
<ul>
{%- for item in versions.branches %}
<li><a href="{{ item.url }}">{{ item.name }}</a></li>
{%- endfor %}
</ul>
{% endif %}
<h3>Page Contents</h3>
{{ toc }}
{% extends "!page.html" %}
{% block body %}
{% if current_version and latest_version and current_version != latest_version %}
<p>
<strong>
{% if current_version.is_released %}
You're reading an old version of this documentation.
If you want up-to-date information, please have a look at <a href="{{ vpathto(latest_version.name) }}">{{latest_version.name}}</a>.
{% else %}
You're reading the documentation for a development version.
For the latest released version, please have a look at <a href="{{ vpathto(latest_version.name) }}">{{latest_version.name}}</a>.
{% endif %}
<strong>
</p>
{% endif %}
{{ super() }}
{% endblock %}%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment