acrn-hypervisor/doc/_templates/layout.html
David B. Kinder 0b01b58e55 doc: update header banner for stable documentation link
Update the header banner on the latest documentation to references 3.2
and 3.0 stable release documentation (instead of 3.1)

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
2023-08-07 20:01:38 -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.2/">v3.2</a> or
<a href="/3.0/">v3.0</a>.</p>
</div>
{% endif %}
{{ super() }}
{% endblock %}
{% block menu %}
{% include "aversions.html" %}
{{ super() }}
{% endblock %}