summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljsnavindex.tpl
blob: b24b166cbf65c763a9bc157503dcf43438503c8a (plain)
1
2
3
4
5
6
7
{# input idx, entries #}
var NAVTREEINDEX{{ idx }} =
{
{% for entry in entries %}
  "{{ entry.file|decodeURL }}{{ config.HTML_FILE_EXTENSION }}{% if entry.anchor %}#{{ entry.anchor }}{% endif %}":[{% for e in entry.path %}{% if not forloop.first %}{{ e.index }}{% if not forloop.last%},{% endif %}{% endif %}{% endfor %}]{% if not forloop.last %},{%endif %}
{% endfor %}
};