~widelands-dev/widelands-website/pyformat_util

« back to all changes in this revision

Viewing changes to sphinxdoc/templates/sphinxdoc/modindex.html

  • Committer: franku
  • Date: 2016-11-22 21:59:30 UTC
  • mfrom: (429.3.13 sitemap)
  • Revision ID: somal@arcor.de-20161122215930-gqvgxktsezcbo6ea
Added a sitemap.xml file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends 'sphinxdoc/documentation.html' %}
2
 
 
3
 
{% block doc_body %}
4
 
    <h1>Module Index</h1>
5
 
    <dl>
6
 
    {% for modname, collapse, cgroup, indent, fname, synops, pform, dep in doc.modindexentries %}
7
 
        <dt><a href="{{ fname }}"><tt class="literal xref">{{ modname }}</tt></a></dt>
8
 
        <dd>{{ synops }}</dd>
9
 
    {% endfor %}
10
 
    </dl>
11
 
    <br />
12
 
{% endblock doc_body %}
13
 
{% block doc_toc %}{% endblock %}