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>
 
  24                         <h1>Collapsible Sets</h1>
 
  27                 <div data-role="content">
 
  32 <h2>Collapsible Sets</h2>
 
  34 <div data-role="collapsible-set">
 
  35         <div data-role="collapsible" data-collapsed="false">
 
  37                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
 
  39         <div data-role="collapsible">
 
  41                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
 
  43         <div data-role="collapsible">
 
  45                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
 
  52 <div data-role="collapsible-set" data-theme="c" data-content-theme="d">
 
  53         <div data-role="collapsible" data-collapsed="false">
 
  55                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
 
  57         <div data-role="collapsible">
 
  59                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
 
  61         <div data-role="collapsible">
 
  63                 <p>I'm the collapsible content in a set so this feels like an accordion.</p>
 
  73                 <div data-role="footer" data-theme="c">
 
  74                         <p>© 2012 - jQuery Mobile Boilerplate</p>