diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /doc/_templates/page.html | |
parent | Initial commit. (diff) | |
download | ceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/_templates/page.html')
-rw-r--r-- | doc/_templates/page.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/_templates/page.html b/doc/_templates/page.html new file mode 100644 index 000000000..3fd83b623 --- /dev/null +++ b/doc/_templates/page.html @@ -0,0 +1,25 @@ +{% extends "!page.html" %} +{% block body %} + +{%- if release == 'dev' %} +<div id="dev-warning" class="admonition note"> + <p class="first admonition-title">Notice</p> + <p class="last">This document is for a development version of Ceph.</p> +</div> +{%- endif %} + +{%- if is_release_eol %} +<div id="eol-warning" class="admonition warning"> + <p class="first admonition-title">Warning</p> + <p class="last">This document is for an unsupported version of Ceph.</p> +</div> +{%- endif %} + +{%- if not is_release_eol %} + <div id="docubetter" align="right" style="padding: 5px; font-weight: bold;"> + <a href="https://pad.ceph.com/p/Report_Documentation_Bugs">Report a Documentation Bug</a> + </div> +{%- endif %} + + {{ super() }} +{% endblock %} |