-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (48 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<title>FirefoxOS File Explorer</title>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name='theme-color' content='#ff7d14'>
<link href="css/file-explorer.css" rel="stylesheet" type="text/css">
<!-- Building blocks -->
<link href="css/headers.css" rel="stylesheet" type="text/css">
<link href="css/lists.css" rel="stylesheet" type="text/css">
<link href="css/action_menu.css" rel="stylesheet" type="text/css">
<script defer src="js/jquery-1.10.2.min.js"></script>
<script defer src="js/app.js"></script>
<script defer src="js/app_init.js"></script>
</head>
<body role="application">
<section role="region">
<header>
<button id="menu"><span class="icon icon-menu">menu</span></button>
<!-- Not yet implemented
<menu type="toolbar">
<a href="#"><span class="icon icon-add">add</span></a>
</menu>
-->
<h1>SD Explorer</h1>
</header>
</section>
<section data-type="list">
<header><span id="header-info"></span></header>
<ul id="content-list"></ul>
</section>
<form id="action-form" role="dialog" data-type="action">
<header id="action-header"></header>
<menu type="toolbar">
<button id="open">Open</button>
<button id="share">Share</button>
<button id="delete">Delete</button>
<button id="cancel">Cancel</button>
</menu>
</form>
<form id="storage-form" role="dialog" data-type="action">
<header id="storage-header"></header>
<menu id="storage-menu" type="toolbar">
<button>Cancel</button>
</menu>
</form>
</body>
</html>