forked from commadelimited/jQuery-Mobile-Bootstrap-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buttons.html
executable file
·41 lines (38 loc) · 1.81 KB
/
buttons.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>jQuery Mobile Twitter Bootstrap Theme</title>
<link rel="stylesheet" href="themes/Bootstrap.css">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile.structure-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" data-theme="a">
<div data-role="header" data-position="inline">
<h1>jQuery Mobile Twitter Bootstrap Theme</h1>
<div data-role="navbar">
<ul>
<li><a href="index.html" data-icon="home">Home</a></li>
<li><a href="buttons.html" data-icon="star" class="ui-btn-active">Buttons</a></li>
<li><a href="listviews.html" data-icon="grid">Lists</a></li>
<li><a href="nav.html" data-icon="search">Nav</a></li>
<li><a href="forms.html" data-icon="gear">Forms</a></li>
</ul>
</div>
</div>
<div data-role="content" data-theme="a">
<a href="https://github.com/commadelimited/jQuery-Mobile-Bootstrap-Theme" data-role="button" data-icon="star">Get the code</a>
<h2>Buttons</h2>
<a href="index.html" data-role="button" data-theme="a" data-icon="star">Swatch A</a>
<a href="index.html" data-role="button" data-theme="b" data-icon="search">Swatch B</a>
<a href="index.html" data-role="button" data-theme="c" data-icon="check">Swatch C</a>
<a href="index.html" data-role="button" data-theme="d" data-icon="info">Swatch D</a>
<a href="index.html" data-role="button" data-theme="e" data-icon="arrow-d">Swatch E</a>
<a href="index.html" data-role="button" data-theme="f" data-icon="delete">Swatch F</a>
</div>
</div>
</body>
</html>