forked from telerik/document-processing-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
51 lines (49 loc) · 1.29 KB
/
page.html
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
50
51
---
layout: index
---
<div id="page-inner-content">
<div id="page-nav">
<div id="page-tree"></div>
<script>
$("#page-tree").kendoTreeView({
dataSource: {
transport: {
read: {
url: "{{site.baseurl}}/{{page.category}}.json",
dataType: "json"
}
},
schema: {
model: {
id: "path",
children: "items",
hasChildren: "items"
}
}
},
select: preventParentSelection,
template: navigationTemplate("{{site.baseurl}}/"),
dataBound: expandNavigation("{{page.url | remove_first: '/' }}")
});
</script>
<div id="page-api" class="k-treeview">
<ul class="k-group">
<li class="k-item">
<span class="k-icon k-plus" role="presentation"></span>
<span class="k-in">
<a href="{{site.baseurl}}/api/" target="_blank">API Reference</a>
</span>
</li>
</ul>
</div>
</div>
<a id="page-edit-link" class="btn btn-action" href="https://github.com/telerik/dpl-docs/edit/master{{ page.url | replace: '.html','' }}.md">Edit this page</a>
<div id="page-article">
{% platforms Available for: %}
<article>
{{ content }}
</article>
{% if site.ff-sheet-id %}{% include feedback-form.html %}{% endif %}
</div>
</div>
{% include footer.html %}