summaryrefslogtreecommitdiff
path: root/templates/html/htmljsmenuletterdata.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmljsmenuletterdata.tpl')
-rw-r--r--templates/html/htmljsmenuletterdata.tpl21
1 files changed, 0 insertions, 21 deletions
diff --git a/templates/html/htmljsmenuletterdata.tpl b/templates/html/htmljsmenuletterdata.tpl
deleted file mode 100644
index e1c5679..0000000
--- a/templates/html/htmljsmenuletterdata.tpl
+++ /dev/null
@@ -1,21 +0,0 @@
-{# inputs: page, list, section, text #}
-{text:"{{ text }}",url:"{{ page.fileName }}{{ section }}{{ config.HTML_FILE_EXTENSION }}"
-{% if list|length>maxItemsForFlatList %}
-,children:[
- {% with index=list|alphaIndex:'name' %}
- {% for sect in index %}
- {% 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 %}
-]
-{% endif %}
-}