2 jQuery Mobile Boilerplate
8 <title> jQuery Mobile Boilerplate - Listviews</title>
10 <meta charset="utf-8">
11 <meta name="viewport" content="width=device-width, initial-scale=1">
13 <!-- jQuery Mobile CSS bits -->
14 <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
16 <!-- if you have a custom theme, add it here -->
17 <link rel="stylesheet" href="/themes/jQuery-Mobile-Boilerplate.css" />
20 <link rel="stylesheet" href="/css/custom.css" />
22 <!-- Javascript includes -->
23 <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
24 <script src="/js/mobileinit.js"></script>
25 <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
26 <script src="/js/application.js"></script>
29 <div data-role="page">
31 <div data-role="header">
32 <a href="../index.html" data-icon="home">Home</a>
36 <div data-role="content">
42 <h2>Basic Listview</h2>
44 <ul data-role="listview" data-inset="true">
45 <li>Robert Heinlein</li>
49 <li>Piers Anthony</li>
54 <ul data-role="listview" data-inset="true">
55 <li><a href="../index.html">Robert Heinlein</a></li>
56 <li><a href="../index.html">SM Stirling</a></li>
57 <li><a href="../index.html">Julian May</a></li>
62 <ul data-role="listview" data-inset="true">
64 <h3>Robert Heinlein</h3>
65 <p>A selection of his books.</p>
67 <li>Starship Troopers</li>
69 <li>Door into Summer</li>
74 <p>A selection of his books.</p>
76 <li>Dies the Fire</li>
77 <li>The Protector's War</li>
78 <li>A Meeting at Corvallis</li>
83 <p>A selection of her books.</p>
85 <li>The Many-Colored Land</li>
86 <li>The Golden Torc</li>
87 <li>The Nonborn King</li>
88 <li>The Adversary</li>
93 <h2>Numbered List</h2>
95 <ol data-role="listview" data-inset="true">
96 <li><a href="index.html">Robert Heinlein</a></li>
97 <li><a href="index.html">SM Stirling</a></li>
98 <li><a href="index.html">Julian May</a></li>
101 <h2>Split-Button List</h2>
103 <ul data-role="listview" data-split-icon="gear" data-split-theme="d" data-inset="true">
104 <li><a href="index.html">
105 <img src="images/album-bb.jpg" />
106 <h3>Broken Bells</h3>
108 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
110 <li><a href="index.html">
112 <img src="images/album-hc.jpg" />
116 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
118 <li><a href="index.html">
119 <img src="images/album-p.jpg" />
120 <h3>Wolfgang Amadeus Phoenix</h3>
122 </a><a href="lists-split-purchase.html" data-rel="dialog" data-transition="slideup">Purchase album
126 <h2>List Dividers</h2>
128 <ul data-role="listview" data-inset="true">
129 <li data-role="list-divider">Men</li>
130 <li>Robert Heinlein</li>
133 <li>Piers Anthony</li>
134 <li data-role="list-divider">Women</li>
138 <h2>Search Filter</h2>
140 <ul data-role="listview" data-inset="true" data-filter="true">
141 <li data-role="list-divider">Men</li>
142 <li>Robert Heinlein</li>
145 <li>Piers Anthony</li>
146 <li data-role="list-divider">Women</li>
150 <h2>Count Bubbles</h2>
152 <ul data-role="listview" data-inset="true" data-filter="true">
155 <span class="ui-li-count">32</span>
159 <span class="ui-li-count">15</span>
163 <span class="ui-li-count">9</span>
167 <span class="ui-li-count">42</span>
171 <span class="ui-li-count">27</span>
180 <div data-role="footer" data-theme="c">
181 <p>© 2012 - jQuery Mobile Boilerplate</p>