summaryrefslogtreecommitdiffstats
path: root/templates/html/htmlclasses.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmlclasses.tpl')
-rw-r--r--templates/html/htmlclasses.tpl37
1 files changed, 11 insertions, 26 deletions
diff --git a/templates/html/htmlclasses.tpl b/templates/html/htmlclasses.tpl
index c00ce32..372d72d 100644
--- a/templates/html/htmlclasses.tpl
+++ b/templates/html/htmlclasses.tpl
@@ -1,9 +1,6 @@
{% extend 'htmlbase.tpl' %}
{% block content %}
<div class="contents">
-<div class="textblock">
-{% indexentry nav name=tr.classIndex file=page.fileName anchor='' isReference=False %}
-</div>
{% with index=classIndex.list|alphaIndex:'name' %}
{# quick index at top #}
<div class="qindex">
@@ -15,32 +12,20 @@
{% endfor %}
</div>
{# multi column index #}
- <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}}">
+ <div class="classindex">
{% for section in index %}
- <ul>
+ <dl class="classindex {% cycle 'even' 'odd' %}">
{% for cls in section.items %}
- <li>
- <span class="ai">
- {% if forloop.first %}
- <a name="letter_{{ section.label }}"></a>
- <span class="ah">&#160;&#160;{{ section.letter }}&#160;&#160;</span><br/>
- {% endif %}
- {% with obj=cls text=cls.name %}
- {% include 'htmlobjlink.tpl' %}
- {% endwith %}
- </span>
- </li>
+ {% if forloop.first %}
+ <dt class="alphachar"><a id="letter_{{ section.label }}" name="letter_{{ section.label }}">{{ section.letter }}</a></dt>
+ {% endif %}
+ <dd>
+ {% with obj=cls text=cls.name %}
+ {% include 'htmlobjlink.tpl' %}
+ {% endwith %}
+ </dd>
{% endfor %}
- </ul>
- {% endfor %}
- </div><!-- classindex -->
- {# quick index at bottom #}
- <div class="qindex">
- {% for section in index %}
- <a class="qindex" href="#letter_{{ section.label }}">{{ section.letter }}</a>
- {% if not forloop.last %}
- &#160;|&#160;
- {% endif %}
+ </dl>
{% endfor %}
</div>
{% endwith %}