summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljsmenuletterdata.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmljsmenuletterdata.tpl')
-rw-r--r--templates/html/htmljsmenuletterdata.tpl15
1 files changed, 12 insertions, 3 deletions
diff --git a/templates/html/htmljsmenuletterdata.tpl b/templates/html/htmljsmenuletterdata.tpl
index ded3402..e1c5679 100644
--- a/templates/html/htmljsmenuletterdata.tpl
+++ b/templates/html/htmljsmenuletterdata.tpl
@@ -1,10 +1,19 @@
{# inputs: page, list, section, text #}
-{text:'{{ text }}',url:'{{ page.fileName }}{{ section }}{{ config.HTML_FILE_EXTENSION }}'
-{% if list|length>maxItemsForMultiPageList %}
+{text:"{{ text }}",url:"{{ page.fileName }}{{ section }}{{ config.HTML_FILE_EXTENSION }}"
+{% if list|length>maxItemsForFlatList %}
,children:[
{% with index=list|alphaIndex:'name' %}
{% for sect in index %}
- {text:'{{ sect.letter }}',url:'{{ page.fileName }}{{ section }}_{{ sect.label }}{{ config.HTML_FILE_EXTENSION }}'}{% if not forloop.last %},{% endif %}
+ {% spaceless %}
+ {text:"{{ sect.letter }}",url:"
+ {% if list|length<=maxItemsForMultiPageList %}
+ {{ page.fileName }}{{ section }}{{ config.HTML_FILE_EXTENSION }}#index_{{ sect.label }}"
+ {% else %}
+ {{ page.fileName }}{{ section }}_{{ sect.label }}{{ config.HTML_FILE_EXTENSION }}"
+ {% endif %}
+ }
+ {% endspaceless %}
+ {% if not forloop.last %},{% endif %}
{% endfor %}
{% endwith %}
]