acrn-hypervisor/doc/_templates/layout.html
David B. Kinder bac00cdec8 doc: add 3.0 to /latest header note
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
2022-06-29 17:37:51 -07:00

18 lines
582 B
HTML

{% extends "!layout.html" %}
{% block document %}
{% if not is_release %}
<div class="admonition important">
<p class="admonition-title">Important</p>
<p>This is the latest documentation for the unstable development branch of
Project ACRN (master).<br/>Use the drop-down menu on the left to select
documentation for a stable release such as <a href="/3.0/">v3.0</a> or
<a href="/2.7/">v2.7</a>.</p>
</div>
{% endif %}
{{ super() }}
{% endblock %}
{% block menu %}
{% include "aversions.html" %}
{{ super() }}
{% endblock %}