mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-21 13:08:42 +00:00
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>
18 lines
582 B
HTML
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 %}
|