forked from TomOrth/MaterialExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1 id="title"></h1>
<img id="up" src="img/up.svg">
</header>
<div class="row">
<div class="column" id="bookmarksColumn">
<table>
<thead>
<tr id="bookTitles">
<td>Bookmarks</td>
</tr>
</thead>
<tbody id="bookmarks">
</tbody>
</table>
</div>
<div class="column" id="filesColumn">
<table>
<thead>
<tr class="titles">
<td></td>
<td>File/Folder name</td>
<td>File size</td>
<td>Date Modified</td>
</tr>
</thead>
<tbody id="files">
</tbody>
</table>
</div>
</div>
<img id="settings-button" src="img/settings.svg">
<script src="js/script.js"></script>
<script src="js/contextMenu.js"></script>
</body>
</html>