2 jQuery Mobile Boilerplate
8 <meta name="viewport" content="width=device-width, initial-scale=1">
9 <title> jQuery Mobile Boilerplate </title>
10 <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
12 <!-- if you have a custom theme, add it here -->
13 <link rel="stylesheet" href="themes/jQuery-Mobile-Boilerplate.css" />
15 <link rel="stylesheet" href="css/custom.css" />
17 <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
18 <script src="js/application.js"></script>
19 <script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
23 <div data-role="page">
25 <div data-role="header">
26 <a href="../index.html" data-icon="home">Home</a>
30 <div data-role="content">
36 <h2>Basic Listview</h2>
38 <ul data-role="listview" data-inset="true">
39 <li>Robert Heinlein</li>
43 <li>Piers Anthony</li>
48 <ul data-role="listview" data-inset="true">
49 <li><a href="../index.html">Robert Heinlein</a></li>
50 <li><a href="../index.html">SM Stirling</a></li>
51 <li><a href="../index.html">Julian May</a></li>
56 <ul data-role="listview" data-inset="true">
58 <h3>Robert Heinlein</h3>
59 <p>A selection of his books.</p>
61 <li>Starship Troopers</li>
63 <li>Door into Summer</li>
68 <p>A selection of his books.</p>
70 <li>Dies the Fire</li>
71 <li>The Protector's War</li>
72 <li>A Meeting at Corvallis</li>
77 <p>A selection of her books.</p>
79 <li>The Many-Colored Land</li>
80 <li>The Golden Torc</li>
81 <li>The Nonborn King</li>
82 <li>The Adversary</li>
87 <h2>Numbered List</h2>
89 <ol data-role="listview" data-inset="true">
90 <li><a href="index.html">Robert Heinlein</a></li>
91 <li><a href="index.html">SM Stirling</a></li>
92 <li><a href="index.html">Julian May</a></li>
95 <h2>Split-Button List</h2>
97 <ul data-role="listview" data-split-icon="gear" data-split-theme="d" data-inset="true">
98 <li><a href="index.html">
99 <img src="images/album-bb.jpg" />
100 <h3>Broken Bells</h3>
102 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
104 <li><a href="index.html">
106 <img src="images/album-hc.jpg" />
110 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
112 <li><a href="index.html">
113 <img src="images/album-p.jpg" />
114 <h3>Wolfgang Amadeus Phoenix</h3>
116 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
120 <h2>List Dividers</h2>
122 <ul data-role="listview" data-inset="true">
123 <li data-role="list-divider">Men</li>
124 <li>Robert Heinlein</li>
127 <li>Piers Anthony</li>
128 <li data-role="list-divider">Women</li>
132 <h2>Search Filter</h2>
134 <ul data-role="listview" data-inset="true" data-filter="true">
135 <li data-role="list-divider">Men</li>
136 <li>Robert Heinlein</li>
139 <li>Piers Anthony</li>
140 <li data-role="list-divider">Women</li>
144 <h2>Count Bubbles</h2>
146 <ul data-role="listview" data-inset="true" data-filter="true">
149 <span class="ui-li-count">32</span>
153 <span class="ui-li-count">15</span>
157 <span class="ui-li-count">9</span>
161 <span class="ui-li-count">42</span>
165 <span class="ui-li-count">27</span>
174 <div data-role="footer" data-theme="c">
175 <p>© 2012 - jQuery Mobile Boilerplate</p>