Adding snippets, illustrator icon, updated index page.
[ReadingsJQM.git] / snippets / collapsible-sets.html
1 <!doctype html>
2 <html>
3 <head>
4         <meta charset="utf-8">
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" />
8
9         <!-- if you have a custom theme, add it here -->
10         <link rel="stylesheet"  href="themes/jQuery-Mobile-Boilerplate.css" />
11
12         <link rel="stylesheet" href="css/custom.css" />
13
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>
17         
18 </head> 
19 <body> 
20         <div data-role="page">
21
22                 <div data-role="header">
23                         <a href="../index.html" data-icon="home">Home</a>
24                         <h1>Collapsible Sets</h1>
25                 </div>
26
27                 <div data-role="content">
28
29
30
31
32 <h2>Collapsible Sets</h2>
33
34 <div data-role="collapsible-set">
35         <div data-role="collapsible" data-collapsed="false">
36                 <h3>Section 1</h3>
37                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
38         </div>
39         <div data-role="collapsible">
40                 <h3>Section 2</h3>
41                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
42         </div>
43         <div data-role="collapsible">
44                 <h3>Section 3</h3>
45                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
46
47         </div>
48 </div>
49
50 <h2>Theming Sets</h2>
51
52 <div data-role="collapsible-set" data-theme="c" data-content-theme="d">
53         <div data-role="collapsible" data-collapsed="false">
54                 <h3>Section 1</h3>
55                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
56         </div>
57         <div data-role="collapsible">
58                 <h3>Section 2</h3>
59                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
60         </div>
61         <div data-role="collapsible">
62                 <h3>Section 3</h3>
63                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
64
65         </div>
66 </div>
67
68
69
70
71                 </div>
72                 
73                 <div data-role="footer" data-theme="c">
74                         <p>&copy; 2012 - jQuery Mobile Boilerplate</p>
75                 </div>  
76                 
77         </div>
78 </body>
79 </html>