-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (102 loc) · 3.96 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Flamemo</title>
<meta name="description" content="Simple memopad for b2g">
<!-- gaia drawer csses -->
<link rel="stylesheet" href="./css/drawer.css" type="text/css">
<link rel="stylesheet" href="./css/headers.css" type="text/css">
<!-- gaia list ui css -->
<link rel="stylesheet" href="./css/lists.css" type="text/css">
<!-- gaia input_areas ui css -->
<link rel="stylesheet" href="./css/input_areas.css" type="text/css">
<!-- gaia edit_mode ui css -->
<link rel="stylesheet" href="./css/buttons.css" type="text/css">
<!-- custom css -->
<link rel="stylesheet" href="./css/custom.css" type="text/css">
<script src="./dist/js/jquery-2.1.1.min.js"></script>
<script src="./dist/js/app.min.js"></script>
</head>
<body role="application" class="skin-dark">
<section data-type="sidebar" role="region">
<header>
<a href="#">
<span class="icon icon-close">close</span>
</a>
<!-- icon button in drawer.css the 82-th line -->
<menu type="toolbar">
<a id="done-button" href="#">
done
</a>
<!--<a href="#"><span class="icon icon-add">add</span></a>-->
</menu>
<h1>Configuration</h1>
</header>
<!-- sidebar margin change in drawer.css the 149-th line -->
<!-- sidebar scroll enable in input_areas.css the 4-th line -->
<nav>
<h2 class="bb-docs">Storage Directory Path</h2>
<form>
<p>
<input type="text" placeholder="Placeholder"></input>
<button type="reset">Clear</button>
</p>
</form>
<!-- <ul>
<li>
<a href="#content">label</a>
</li>
<li>
<a href="#content">label</a>
</li>
</ul>-->
</nav>
</section>
<section id="drawer" role="region">
<header>
<!-- icon button in headers.css the 48-th line -->
<a href="#"><span class="icon icon-menu">hide sidebar</span></a>
<a href="#drawer"><span class="icon icon-menu">show sidebar</span></a>
<menu type="toolbar">
<button id="add-button"><span class="icon icon-add">add</span></button>
</menu>
<h1>Flamemo</h1>
</header>
<section data-type="list" role="main">
<header>
</header>
<ul id="memo-list">
<li id="doc1-item">
<a href="#editor">
<p>New Document1</p>
</a>
</li>
</ul>
</section>
</section>
<form role="dialog" data-type="edit" id="editor">
<section role="region" class="skin-dark">
<header>
<a id="edit-cancel-button" href="#">
<span class="icon icon-close">close</span>
</a>
<menu type="toolbar">
<a href="#">
<span id="edit-done-button">done</span>
</a>
</menu>
<h1>Edit</h1>
</header>
<p>
<textarea placeholder="Foobar" required=""></textarea>
</p>
</section>
<menu>
<a id="edit-delete-button" class="bb-button" href="#">
Delete
</a>
</menu>
</form>
</body>
</html>