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>
27 <h1>Collapsible Sets</h1>
30 <div data-role="content">
35 <h2>Collapsible Sets</h2>
37 <div data-role="collapsible-set">
38 <div data-role="collapsible" data-collapsed="false">
40 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
42 <div data-role="collapsible">
44 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
46 <div data-role="collapsible">
48 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
55 <div data-role="collapsible-set" data-theme="c" data-content-theme="d">
56 <div data-role="collapsible" data-collapsed="false">
58 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
60 <div data-role="collapsible">
62 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
64 <div data-role="collapsible">
66 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
76 <div data-role="footer" data-theme="c">
77 <p>© 2012 - jQuery Mobile Boilerplate</p>