You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
370 B
HTML
10 lines
370 B
HTML
{% extends "!layout.html" %}
|
|
{% block document %}
|
|
{% if version != stable_version %}
|
|
<div class="wy-alert info">
|
|
<p>You are currently browsing documentation for the <b>{{ version }}</b> branch. Documentation for the stable <b>{{ stable_version }}</b> branch can be found <a href="/{{ stable_version }}/">here</a>.</p>
|
|
</div>
|
|
{% endif %}
|
|
{{ super() }}
|
|
{% endblock %}
|