summaryrefslogtreecommitdiffstats
path: root/templates/html/htmlclasses.tpl
blob: e932c26442357d713d70e46601ea0ff977a836b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extend 'htmlbase.tpl' %}
{% block content %}
<div class="contents">
<div class="textblock">
{% indexentry nav name=tr.classIndex file=page.fileName anchor='' %}
</div>
<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}}">
<ul>
{% with index=classIndex.list|alphaIndex:'name' %}
  {% for section in index %}
    <div class="ah">&#160;&#160;{{ section.letter }}&#160;&#160;</div>
    {% for cls in section.items %}
      <li>{{ cls.name }}</li>
    {% endfor %}
  {% endfor %}
{% endwith %}
</ul>
</div><!-- classindex -->
</div><!-- contents -->
{% endblock %}