buildframework/helium/external/python/lib/common/Sphinx-0.5.1-py2.5.egg/sphinx/templates/genindex-split.html
changeset 179 d8ac696cc51f
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
       
     1 {% extends "layout.html" %}
       
     2 {% set title = _('Index') %}
       
     3 {% block body %}
       
     4 
       
     5    <h1 id="index">{{ _('Index') }}</h1>
       
     6 
       
     7    <p>{{ _('Index pages by letter') }}:</p>
       
     8 
       
     9    <p>{% for key, dummy in genindexentries -%}
       
    10    <a href="{{ pathto('genindex-' + key) }}"><strong>{{ key }}</strong></a>
       
    11      {% if not loop.last %}| {% endif %}
       
    12    {%- endfor %}</p>
       
    13 
       
    14    <p><a href="{{ pathto('genindex-all') }}"><strong>{{ _('Full index on one page') }}</strong>
       
    15                                                ({{ _('can be huge') }})</a></p>
       
    16 
       
    17 {% endblock %}
       
    18 
       
    19 {% block sidebarrel %}
       
    20 {% if split_index %}
       
    21    <h4>Index</h4>
       
    22    <p>{% for key, dummy in genindexentries -%}
       
    23    <a href="{{ pathto('genindex-' + key) }}"><strong>{{ key }}</strong></a>
       
    24      {% if not loop.last %}| {% endif %}
       
    25    {%- endfor %}</p>
       
    26 
       
    27    <p><a href="{{ pathto('genindex-all') }}"><strong>{{ _('Full index on one page') }}</strong></a></p>
       
    28 {% endif %}
       
    29    {{ super() }}
       
    30 {% endblock %}