File: defindex.html

package info (click to toggle)
python-gevent 1.0.1-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,948 kB
  • ctags: 12,954
  • sloc: python: 39,061; ansic: 26,289; sh: 13,582; makefile: 833; awk: 18
file content (26 lines) | stat: -rw-r--r-- 1,331 bytes parent folder | download | duplicates (8)
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
26
{% extends "layout.html" %}
{% set title = _('Overview') %}
{% block body %}
  <h1>{{ docstitle|e }}</h1>
  <p>
    Welcome! This is
    {% block description %}the documentation for {{ project|e }}
    {{ release|e }}{% if last_updated %}, last updated {{ last_updated|e }}{% endif %}{% endblock %}.
  </p>
  {% block tables %}
  <p><strong>{{ _('Indices and tables:') }}</strong></p>
  <table class="contentstable" align="center"><tr>
    <td width="50%">
      <p class="biglink"><a class="biglink" href="{{ pathto("contents") }}">{{ _('Complete Table of Contents') }}</a><br>
         <span class="linkdescr">{{ _('lists all sections and subsections') }}</span></p>
      <p class="biglink"><a class="biglink" href="{{ pathto("search") }}">{{ _('Search Page') }}</a><br>
         <span class="linkdescr">{{ _('search this documentation') }}</span></p>
    </td><td width="50%">
      <p class="biglink"><a class="biglink" href="{{ pathto("modindex") }}">{{ _('Global Module Index') }}</a><br>
         <span class="linkdescr">{{ _('quick access to all modules') }}</span></p>
      <p class="biglink"><a class="biglink" href="{{ pathto("genindex") }}">{{ _('General Index') }}</a><br>
         <span class="linkdescr">{{ _('all functions, classes, terms') }}</span></p>
    </td></tr>
  </table>
  {% endblock %}
{% endblock %}