Blame templates/html/htmljsmenuletterdata.tpl
|
Packit Service |
50c9f2 |
{# inputs: page, list, section, text #}
|
|
Packit Service |
50c9f2 |
{text:'{{ text }}',url:'{{ page.fileName }}{{ section }}{{ config.HTML_FILE_EXTENSION }}'
|
|
Packit Service |
50c9f2 |
{% if list|length>maxItemsForMultiPageList %}
|
|
Packit Service |
50c9f2 |
,children:[
|
|
Packit Service |
50c9f2 |
{% with index=list|alphaIndex:'name' %}
|
|
Packit Service |
50c9f2 |
{% for sect in index %}
|
|
Packit Service |
50c9f2 |
{text:'{{ sect.letter }}',url:'{{ page.fileName }}{{ section }}_{{ sect.label }}{{ config.HTML_FILE_EXTENSION }}'}{% if not forloop.last %},{% endif %}
|
|
Packit Service |
50c9f2 |
{% endfor %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
]
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
}
|