-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·65 lines (60 loc) · 1.79 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>demo Store</title>
<link rel="stylesheet" type="text/css" href="style/headers.css"/>
<link rel="stylesheet" type="text/css" href="style/lists.css" />
<link rel="stylesheet" type="text/css" href="style/input_areas.css" />
<link rel="stylesheet" type="text/css" href="style/app.css"/>
</head>
<body role="application">
<section role="region" id="list-view">
<header>
<menu type="toolbar">
<button id="settings-btn"><span class="icon icon-settings">settings</span></button>
</menu>
<h1>demo Store</h1>
</header>
<article id="appList" data-type="list">
<ul>
<li>
<a href="#">
<aside><img src="style/images/default.png"></aside>
<aside class="pack-end install"></aside>
<p>App 1</p>
<p>App developer</p>
</a>
</li>
<li>
<a href="#">
<aside><img src="style/images/default.png"></aside>
<aside class="pack-end install"></aside>
<p>App 2</p>
<p>App developer</p>
</a>
</li>
</ul>
</article>
</section>
<section role="region" id="settings-view" class="skin-organic">
<header>
<button id="close-btn"><span class="icon icon-close">close</span></button>
<menu type="toolbar">
<button id="settings-btn">Log in</button>
</menu>
<h1>Settings</h1>
</header>
<article>
<form>
<p>
<input type="text" placeholder="username">
<button type="reset">Clear</button>
</p>
<p><input type="password" placeholder="password"/></p>
</form>
</article>
</section>
<script src="js/app.js"></script>
</body>
</html>