-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 2.21 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Diff App</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="./css/photon.min.css">
<link rel="stylesheet" href="./css/styles.css">
<!-- Javascript -->
<script>window.$ = window.jQuery = require('./js/jquery-3.1.1.min.js');</script>
<script src="js/directoryCompare.js"></script>
</head>
<body>
<div class="window">
<!-- .toolbar-header sits at the top of your app -->
<header class="toolbar toolbar-header">
<h1 class="title">Diff App</h1>
<div class="toolbar-actions">
<div class="btn-group">
<button class="btn btn-default" id="openDirectory">
<span class="icon icon-folder"></span>
</button>
<button class="btn btn-default" title="Excludes selected files" id="excludeF">
<span class="icon icon-doc-text-inv"></span> Exclude files</button>
<button class="btn btn-default" title="Excludes selected folders" id="excludeD">
<span class="icon icon-folder"></span> Exclude folders</button>
<button class="btn btn-default" title="Excludes contents of gitignore" id="gitignore">.gitignore</button>
</div>
</div>
</header>
<!-- Your app's content goes inside .window-content -->
<div class="window-content">
<div class="pane-group" id = "container">
<div class="pane" id="leftTable">
<table class="table-striped">
<thead>
<tr>
<th>File</th>
</tr>
</thead>
<tbody id = "left">
<tr><td> </td></tr>
<tr><td> </td></tr>
<tr><td> </td></tr>
</tbody>
</table>
</div>
<div class="pane" id="rightTable">
<table class="table-striped">
<thead>
<tr>
<th>File</th>
</tr>
</thead>
<tbody id = "right">
<tr><td> </td></tr>
<tr><td> </td></tr>
<tr><td> </td></tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>