Move the doc version selection menu from the bottom of the left nav menu to above the TOC menu, making it more obvious. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
15 lines
405 B
HTML
15 lines
405 B
HTML
{% extends "!layout.html" %}
|
|
{% block document %}
|
|
{% if is_release %}
|
|
<div class="wy-alert wy-alert-danger">
|
|
The <a href="/{{ pagename }}.html">latest development version</a>
|
|
of this page may be more current than this released {{ version }} version.
|
|
</div>
|
|
{% endif %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
{% block menu %}
|
|
{% include "zversions.html" %}
|
|
{{ super() }}
|
|
{% endblock %}
|