Files
acrn-hypervisor/doc/_templates/layout.html
Reyes, Amy fcc8edac38 doc: add 3.1 to /latest header note
Signed-off-by: Reyes, Amy <amy.reyes@intel.com>
2022-09-26 10:07:26 -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.1/">v3.1</a> or
<a href="/3.0/">v3.0</a>.</p>
</div>
{% endif %}
{{ super() }}
{% endblock %}
{% block menu %}
{% include "aversions.html" %}
{{ super() }}
{% endblock %}