diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-12 17:33:32 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-12 17:33:32 -0700 |
commit | 5ef197e5fd93e851cb0da5a630fd38a191074371 (patch) | |
tree | aa060bd25946e76f8e6d0bdce48d62f8f6da9dc5 /docs/_templates/defindex.html | |
parent | 52ed02bd06f1762ef5f36e95f24ccb8230c1b36b (diff) | |
download | slixmpp-5ef197e5fd93e851cb0da5a630fd38a191074371.tar.gz slixmpp-5ef197e5fd93e851cb0da5a630fd38a191074371.tar.bz2 slixmpp-5ef197e5fd93e851cb0da5a630fd38a191074371.tar.xz slixmpp-5ef197e5fd93e851cb0da5a630fd38a191074371.zip |
Start of docs for 1.0
Diffstat (limited to 'docs/_templates/defindex.html')
-rw-r--r-- | docs/_templates/defindex.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/_templates/defindex.html b/docs/_templates/defindex.html new file mode 100644 index 00000000..ce8d3af6 --- /dev/null +++ b/docs/_templates/defindex.html @@ -0,0 +1,35 @@ +{# + basic/defindex.html + ~~~~~~~~~~~~~~~~~~~ + + Default template for the "index" page. + + :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +#} +{% 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 %} |