Blame templates/html/htmljsnavindex.tpl

Packit Service 50c9f2
{# input idx, entries #}
Packit Service 50c9f2
var NAVTREEINDEX{{ idx }} =
Packit Service 50c9f2
{
Packit Service 50c9f2
{% for entry in entries %}
Packit Service 50c9f2
  "{{ 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 %}
Packit Service 50c9f2
{% endfor %}
Packit Service 50c9f2
};