-
Notifications
You must be signed in to change notification settings - Fork 50
/
template.html
57 lines (40 loc) · 1.24 KB
/
template.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
52
53
54
55
56
57
<script type="text/template" id="template-app-window">
<div id="json-viewer" class="folder-frame">
<div class="wrapper"></div>
</div>
</script>
<script type="text/template" id="template-folder-pane">
<div class="wrapper scrollable-vertical">
<ul class="folder-item-list"></ul>
</div>
<i class="resize-handler"></i>
</script>
<script type="text/template" id="template-folder-item">
<li class="folder-item">
<div class="json-property">
<div class="json-keyname"></div>
<div class="json-value"></div>
</div>
</li>
</script>
<script type="text/template" id="template-path-bar">
<ol class="breadcrumb-list"></ol>
</script>
<script type="text/template" id="template-path-bar-item">
<% var path; %>
<% var cls = ['breadcrumb-item']; %>
<% var selected; if (selected) cls.push('selected'); %>
<% var root; if (root) cls.push('root_item'); %>
<% cls = cls.join(' '); %>
<li class="<%= cls %>">
<% if (selected) { %>
<span><%= key %></span>
<% } else { %>
<a href="#<%= path %>"><%= key %></a>
<% } %>
</li>
</script>
<script type="text/template" id="template-search-bar">
<input type="search" name="searchbox" placeholder="Find">
<span class="search-status"></span>
</script>