-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (38 loc) · 968 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rido Models</title>
</head>
<body>
<h1>Rido Models</h1>
<div>
Resolve Models using the model-manifest.json in each folder
</div>
<hr />
<div id="rendered">
</div>
<script id="models-list-template" type="x-tmpl-mustache">
<ul>
{{#.}}
<span>{{key}}</span>
<li id="{{dtmi}}">
<div>
<a href="{{path}}" title="{{dtmi}}" target="_blank">{{dtmi}}</a>
</div>
<div class="depends">
<ul>
{{#depends}}
<li>{{.}}</li>
{{/depends}}
</ul>
</div>
</li>
{{/.}}
</ul>
</script>
<script src="https://unpkg.com/mustache@latest"></script>
<script src="index.js"></script>
</body>
</html>