summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljsnavindex.tpl
blob: 07a9efc5e8389124b6b6bfa96f6f9ea6f4e41270 (plain)
1
2
3
4
5
6
7
{# input idx, entries #}
var NAVTREEINDEX{{ idx }} =
{
{% for entry in entries %}
  "{{ entry.file }}{{ 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 %}
};