-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathsitemap.html
More file actions
49 lines (48 loc) · 1.38 KB
/
sitemap.html
File metadata and controls
49 lines (48 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
# Copyright Vespa.ai. All rights reserved.
skipheading: true
index: false
---
<div class="row m-20">
<div class="col">
<h1>Table of contents</h1>
</div>
</div>
<div class="row m-20">
<div class="col">
{% for item in site.data.sidebar.docs %}
<h4>{{ item.title }}</h4>
<ul>
{% for child in item.documents %}
<li>
{% if child.sub %}
<!-- submenu start-->
{{ child.title }}
<ul>
{% for subchild in child.sub %}
<li>
{% if subchild.sub %}
<!-- subsubmenu start-->
{{ subchild.title }}
<ul>
{% for subsubchild in subchild.sub %}
<li><a href="{{ subsubchild.url }}">{{ subsubchild.page }}</a></li>
{% endfor %}
</ul>
<!-- subsubmenu end-->
{% else %}
<a href="{{ subchild.url }}">{{ subchild.page }}</a>
{% endif %}
</li>
{% endfor %}
</ul>
<!-- submenu end-->
{% else %}
<a href="{{ child.url }}">{{ child.page }}</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>