Imported Upstream version 1.8.9
[platform/upstream/doxygen.git] / templates / html / htmlclasses.tpl
1 {% extend 'htmlbase.tpl' %}
2 {% block content %}
3 <div class="contents">
4 <div class="textblock">
5 {% indexentry nav name=tr.classIndex file=page.fileName anchor='' %}
6 </div>
7 {% with index=classIndex.list|alphaIndex:'name' %}
8   {# quick index at top #}
9   <div class="qindex">
10   {% for section in index %}
11     <a class="qindex" href="#letter_{{ section.label }}">{{ section.letter }}</a>
12     {% if not forloop.last %}
13     &#160;|&#160;
14     {% endif %}
15   {% endfor %}
16   </div>
17   {# multi column index #}
18   <div class="classindex" style="column-count:{{ config.COLS_IN_ALPHA_INDEX }};-moz-column-count:{{ config.COLS_IN_ALPHA_INDEX }};-webkit-column-count:{{ config.COLS_IN_ALPHA_INDEX}}">
19   {% for section in index %}
20     <ul>
21     {% for cls in section.items %}
22       <li>
23         <span class="ai">
24         {% if forloop.first %}
25         <a name="#letter_{{ section.label }}"></a>
26         <span class="ah">&#160;&#160;{{ section.letter }}&#160;&#160;</span><br/>
27         {% endif %}
28         {% with obj=cls text=cls.name %}
29           {% include 'htmlobjlink.tpl' %}
30         {% endwith %}
31         </span>
32       </li>
33     {% endfor %}
34     </ul>
35   {% endfor %}
36   </div><!-- classindex -->
37   {# quick index at bottom #}
38   <div class="qindex">
39   {% for section in index %}
40     <a class="qindex" href="#letter_{{ section.label }}">{{ section.letter }}</a>
41     {% if not forloop.last %}
42     &#160;|&#160;
43     {% endif %}
44   {% endfor %}
45   </div>
46 {% endwith %}
47 </div><!-- contents -->
48 {% endblock %}
49