File: page.html

package info (click to toggle)
sphinx-celery 2.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: python: 719; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 720 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "layout.html" %}
{% block body %}
<div class="deck">

    {% if version >= version_dev %}
        <p class="developmentversion">
        This document is for {{ project }}'s development version, which can be
        significantly different from previous releases. Get the stable docs here:

        <a href="{{ canonical_stable_url }}/{{ pagename }}{{ file_suffix }}">{{ version_stable }}</a>.
        </p>
    {% else %}
        <p>
        This document describes the current stable version of {{project}} ({{ version }}).
        For development docs,
        <a href="{{ canonical_dev_url }}/{{ pagename }}{{ file_suffix }}">go here</a>.
        </p>
    {% endif %}

</div>
    {{ body }}
{% endblock %}