This repository was archived by the owner on Mar 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdemo.html
More file actions
118 lines (114 loc) · 5.33 KB
/
Copy pathdemo.html
File metadata and controls
118 lines (114 loc) · 5.33 KB
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
113
114
115
116
117
<!doctype html>
<html lang=en>
<head>
<title>Zoey</title>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, minimum-scale=1, maximum-scale=1, initial-scale=1">
<link rel=stylesheet href=release/zoey-0.2.1.min.css>
</head>
<body>
<article id=demo data-role=page>
<header data-role=header data-theme=b>
<a href=index.html data-role=button data-rel=back data-icon=arrow-l>Back</a>
<h1 data-role=page-title>UI Components</h1>
<ul data-role=navigation>
<li><a href=index.html data-role=button data-rel=back>This is a</a></li>
<li><a href=index.html data-role=button data-rel=back>Navigation</a></li>
<li><a href=index.html data-role=button data-rel=back>Bar</a></li>
</ul>
</header>
<div data-role=content>
<div data-role=panel data-theme=d>
<h2>Buttons</h2>
<p><a href=index.html data-role=button data-theme=a data-rel=back>Theme Option A</a></p>
<p><a href=index.html data-role=button data-theme=b data-rel=back>Theme Option B</a></p>
<p><a href=index.html data-role=button data-theme=c data-rel=back>Theme Option C</a></p>
<p><a href=index.html data-role=button data-theme=d data-rel=back>Theme Option D</a></p>
<p><a href=index.html data-role=button data-theme=e data-rel=back>Theme Option E</a></p>
</div>
<div data-role=panel data-theme=d>
<h2>Lists</h2>
<ul data-role=list data-inset=true>
<li data-icon=arrow-l><a href=index.html data-rel=back>This is a sample list</a></li>
<li data-icon=arrow-r data-icon-position=right><a href=index.html data-rel=back>select any of the items</a></li>
<li data-icon=arrow-l><a href=index.html data-rel=back>to go back to the</a></li>
<li data-icon=arrow-r data-icon-position=right><a href=index.html data-rel=back>homepage</a></li>
</ul>
</div>
<div data-role=panel data-theme=d>
<h2>Control Groups</h2>
<p data-role=group data-theme=e>
<a href=index.html data-role=button data-rel=back>Horizontal</a>
<a href=index.html data-role=button data-rel=back>Orientation</a>
</p>
<p data-role=group data-orientation=vertical data-theme=c>
<a href=index.html data-role=button data-rel=back>Vertical</a>
<a href=index.html data-role=button data-rel=back>Orientation</a>
</p>
</div>
<div data-role=panel data-theme=d>
<h2>Collapsible</h2>
<div data-role=collapsible data-collapsed=true>
<h3 data-theme=c>Toggle Lipsum</h3>
<div data-role=panel>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis libero augue, in auctor purus.</p>
<p>Donec eget tempor lectus. Aenean at velit risus, sed hendrerit velit. Ut nec arcu quam, sit amet tempus tortor. Duis elit libero, congue ac semper placerat, accumsan a nisl.</p>
</div>
</div>
</div>
<div data-role=panel data-theme=d>
<h2>Forms</h2>
<ol>
<li data-role=field>
<label>E-mail:
<input type=email id=name>
</label>
</li>
<li data-role=field>
<label>Country:
<select>
<option>United Kingdom</option>
<option>United States</option>
</select>
</label>
</li>
<li data-role=field>
<ul data-role=group>
<li><label data-role=button><input type=radio name=gender value=m checked> Male</label></li>
<li><label data-role=button><input type=radio id=female name=gender value=f> Female</label></li>
</ul>
</li>
</ol>
</div>
<div data-role=panel data-theme=d>
<h2>Grids</h2>
<div data-role=grid data-size=a>
<div data-role=grid-row>
<div data-role=grid-cell data-size=b>left</div>
<div data-role=grid-cell data-size=b>right</div>
</div>
</div>
<hr>
<div data-role=grid data-size=a>
<div data-role=grid-row>
<div data-role=grid-cell data-size=c>top-left</div>
<div data-role=grid-cell data-size=c>top-centre</div>
<div data-role=grid-cell data-size=c>top-right</div>
</div>
<div data-role=grid-row>
<div data-role=grid-cell data-size=c>bottom-left</div>
<div data-role=grid-cell data-size=c>bottom-centre</div>
<div data-role=grid-cell data-size=c>bottom-right</div>
</div>
</div>
</div>
</div>
<footer data-role=footer>
<ul data-role=navigation>
<li><a href=https://github.com/StanAngeloff/zoey data-role=button rel=external>Github page</a></li>
</ul>
</footer>
</article>
<script src=release/zoey-0.2.1.bundle.min.js></script>
</body>
</html>