-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
80 lines (74 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<link href="style/headers.css" rel="stylesheet" type="text/css">
<link href="style/drawer.css" rel="stylesheet" type="text/css">
<link href="style/lists.css" rel="stylesheet" type="text/css">
<link href="style/switches.css" rel="stylesheet" type="text/css">
<link href="style/custom.css" rel="stylesheet" type="text/css">
<title>A simple TODO app</title>
<!-- Inline scripts are forbidden in Firefox OS apps (CSP restrictions),
so we use a script file. -->
<script src="app.js" defer></script>
</head>
<body>
<!-- This code is in the public domain. Enjoy! -->
<section data-type="sidebar">
<header>
<menu type="toolbar">
<a href="#content"><span class="icon icon-back">back</span></a>
</menu>
<h1>Actions</h1>
</header>
<nav>
<ul>
<li><a href="#action1">Action1</a></li>
<li><a href="#action2">Action2</a></li>
</ul>
</nav>
</section>
<section id="drawer" role="region">
<header class="fixed">
<a href="#"><span class="icon icon-menu">hide sidebar</span></a>
<a href="#drawer"><span class="icon icon-menu">show sidebar</span></a>
<h1>My TODO app</h1>
</header>
<div role="main">
<section data-type="list">
<ul>
<li><p>Buy food</p></li>
<li><p>Take a shower</p></li>
<li><p>Code all the things!</p></li>
</ul>
</section>
<section data-type="list">
<ul data-type="edit">
<li>
<label class="pack-checkbox">
<input type="checkbox">
<span></span>
</label>
<p>Trash old clothes</p>
</li>
<li>
<label class="pack-checkbox">
<input type="checkbox">
<span></span>
</label>
<p>Buy a FxOS phone</p>
</li>
<li>
<label class="pack-checkbox">
<input type="checkbox">
<span></span>
</label>
<p>Contribute to Mozilla</p>
</li>
</ul>
</section>
</div>
</section>
</body>
</html>