5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title> jQuery Mobile Boilerplate </title>
7 <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
9 <!-- if you have a custom theme, add it here -->
10 <link rel="stylesheet" href="themes/jQuery-Mobile-Boilerplate.css" />
12 <link rel="stylesheet" href="css/custom.css" />
14 <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
15 <script src="js/application.js"></script>
16 <script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
20 <div data-role="page">
22 <div data-role="header">
23 <a href="../index.html" data-icon="home">Home</a>
27 <div data-role="content">
33 <h2>Basic Listview</h2>
35 <ul data-role="listview" data-inset="true">
36 <li>Robert Heinlein</li>
40 <li>Piers Anthony</li>
45 <ul data-role="listview" data-inset="true">
46 <li><a href="../index.html">Robert Heinlein</a></li>
47 <li><a href="../index.html">SM Stirling</a></li>
48 <li><a href="../index.html">Julian May</a></li>
53 <ul data-role="listview" data-inset="true">
55 <h3>Robert Heinlein</h3>
56 <p>A selection of his books.</p>
58 <li>Starship Troopers</li>
60 <li>Door into Summer</li>
65 <p>A selection of his books.</p>
67 <li>Dies the Fire</li>
68 <li>The Protector's War</li>
69 <li>A Meeting at Corvallis</li>
74 <p>A selection of her books.</p>
76 <li>The Many-Colored Land</li>
77 <li>The Golden Torc</li>
78 <li>The Nonborn King</li>
79 <li>The Adversary</li>
84 <h2>Numbered List</h2>
86 <ol data-role="listview" data-inset="true">
87 <li><a href="index.html">Robert Heinlein</a></li>
88 <li><a href="index.html">SM Stirling</a></li>
89 <li><a href="index.html">Julian May</a></li>
92 <h2>Split-Button List</h2>
94 <ul data-role="listview" data-split-icon="gear" data-split-theme="d" data-inset="true">
95 <li><a href="index.html">
96 <img src="images/album-bb.jpg" />
99 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
101 <li><a href="index.html">
103 <img src="images/album-hc.jpg" />
107 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
109 <li><a href="index.html">
110 <img src="images/album-p.jpg" />
111 <h3>Wolfgang Amadeus Phoenix</h3>
113 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
117 <h2>List Dividers</h2>
119 <ul data-role="listview" data-inset="true">
120 <li data-role="list-divider">Men</li>
121 <li>Robert Heinlein</li>
124 <li>Piers Anthony</li>
125 <li data-role="list-divider">Women</li>
129 <h2>Search Filter</h2>
131 <ul data-role="listview" data-inset="true" data-filter="true">
132 <li data-role="list-divider">Men</li>
133 <li>Robert Heinlein</li>
136 <li>Piers Anthony</li>
137 <li data-role="list-divider">Women</li>
141 <h2>Count Bubbles</h2>
143 <ul data-role="listview" data-inset="true" data-filter="true">
146 <span class="ui-li-count">32</span>
150 <span class="ui-li-count">15</span>
154 <span class="ui-li-count">9</span>
158 <span class="ui-li-count">42</span>
162 <span class="ui-li-count">27</span>
171 <div data-role="footer" data-theme="c">
172 <p>© 2012 - jQuery Mobile Boilerplate</p>