Imported Upstream version 1.9.2
[platform/upstream/doxygen.git] / templates / html / htmlclasses.tpl
1 {% extend 'htmlbase.tpl' %}
2 {% block content %}
3 <div class="contents">
4 {% with index=classIndex.list|alphaIndex:'name' %}
5   {# quick index at top #}
6   <div class="qindex">
7   {% for section in index %}
8     <a class="qindex" href="#letter_{{ section.label }}">{{ section.letter }}</a>
9     {% if not forloop.last %}
10     &#160;|&#160;
11     {% endif %}
12   {% endfor %}
13   </div>
14   {% indexentry nav name=tr.classIndex file=page.fileName anchor='' isReference=False separateIndex=False addToIndex=True %}
15   {# multi column index #}
16   <div class="classindex">
17   {% for section in index %}
18     <dl class="classindex {% cycle 'even' 'odd' %}">
19     {% for cls in section.items %}
20       {% if forloop.first %}
21       <dt class="alphachar"><a id="letter_{{ section.label }}" name="letter_{{ section.label }}">{{ section.letter }}</a></dt>
22       {% endif %}
23       <dd>
24       {% with obj=cls text=cls.name %}
25         {% include 'htmlobjlink.tpl' %}
26       {% endwith %}
27       </dd>
28     {% endfor %}
29     </dl>
30   {% endfor %}
31   </div>
32 {% endwith %}
33 </div><!-- contents -->
34 {% endblock %}
35