summaryrefslogtreecommitdiffstats
path: root/doc/_templates/page.html
blob: 3923975d78f025e8e300293da41a8c6189424212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: 15px; font-weight: bold;">
    <a href="https://pad.ceph.com/p/Report_Documentation_Bugs">Report a Documentation Bug</a>
  </div>
{%- endif %}

  {{ super() }}
{% endblock %}