mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-30 19:05:33 +00:00
Move the doc version selector menu higher on the left nav to make it more visible (from its prior bottom of the nav menu) 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 "aversions.html" %}
|
|
{{ super() }}
|
|
{% endblock %}
|