-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="./css/index.css" rel="stylesheet" type="text/css"></link>
<title>One File Manager</title>
</head>
<body class="container-one-column">
<section class="menu container-one-row">
</section>
<section id="main" class="window container-one-row">
<section class="window container-one-row">
<section class="bar container-one-column">
</section>
<section class="window container-one-column">
<section class="tabs hbar no-border container-one-row">
</section>
<section id="left" class="file-container window container-one-row">
</section>
<section class="status hbar solid-border container-one-row">
</section>
</section>
</section>
<section class="bar minimized container-one-column">
</section>
<section class="window container-one-row">
<section class="window container-one-column">
<section class="tabs hbar no-border container-one-row">
</section>
<section id="right" class="file-container window container-one-row">
</section>
<section class="status hbar solid-border container-one-row">
</section>
</section>
<section class="bar container-one-column">
</section>
</section>
</section>
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</html>