2018-08-04 07:12:03 +08:00
|
|
|
{% extends "!layout.html" %}
|
|
|
|
{% block document %}
|
|
|
|
{% if is_release %}
|
|
|
|
<div class="wy-alert wy-alert-danger">
|
2019-08-23 06:02:30 +08:00
|
|
|
The <a href="/latest/{{ pagename }}.html">latest development version</a>
|
2018-08-04 07:12:03 +08:00
|
|
|
of this page may be more current than this released {{ version }} version.
|
|
|
|
</div>
|
2020-05-28 00:24:43 +08:00
|
|
|
{% else %}
|
|
|
|
<div class="wy-alert wy-alert-danger">
|
|
|
|
This is the documentation for the latest (master) development branch of
|
|
|
|
Zephyr. If you are looking for the documentation of previous releases, use
|
|
|
|
the drop-down menu on the left and select the desired version.
|
|
|
|
</div>
|
2018-08-04 07:12:03 +08:00
|
|
|
{% endif %}
|
|
|
|
{{ super() }}
|
|
|
|
{% endblock %}
|
2019-04-04 06:04:04 +08:00
|
|
|
{% block menu %}
|
|
|
|
{% include "zversions.html" %}
|
|
|
|
{{ super() }}
|
|
|
|
{% endblock %}
|