Adding snippets, illustrator icon, updated index page.
[ReadingsJQM.git] / index.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                         <h1>jQuery Mobile Boilerplate 1.0</h1>
24                 </div>
25
26                 <div data-role="content">
27                 
28                         <ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b">
29                                 <li data-role="list-divider">Snippet Pages</li>
30                                 <li><a href="snippets/buttons.html">Buttons</a></li>
31                                 <li><a href="snippets/grids.html">Grids</a></li>
32                                 <li><a href="snippets/collapsibles.html">Collapsible Boxes</a></li>
33                                 <li><a href="snippets/collapsible-sets.html">Collapsible Sets</a></li>
34                                 <li><a href="snippets/forms.html">Form Elements</a></li>
35                                 <li><a href="snippets/lists.html">List Views</a></li>
36                         </ul>
37
38                 </div>
39                 
40                 <div data-role="footer" data-theme="c">
41                         <p>&copy; 2012 - jQuery Mobile Boilerplate</p>
42                 </div>  
43                 
44         </div>
45 </body>
46 </html>