Created
May 17, 2012 07:31
-
-
Save Rockncoder/2717195 to your computer and use it in GitHub Desktop.
JQMSkeleton Index HTML file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <meta name="apple-mobile-web-app-capable" content="yes"/> | |
| <link href="content/jquery.mobile-1.1.0.min.css" rel="stylesheet" type="text/css" /> | |
| <script src="scripts/jquery-1.7.1.min.js" type="text/javascript"></script> | |
| <script src="scripts/jquery.mobile-1.1.0.min.js" type="text/javascript"></script> | |
| <script src="scripts/hideAddressBar.js" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div id="page1" data-role="page" data-rockncoder-jspage="page1"> | |
| <header data-role="header" data-position="fixed"> | |
| <h1>Index</h1> | |
| </header> | |
| <section data-role="content"> | |
| <a href="./page2.htm" data-role="button" data-transition="slide">to Page 2</a> | |
| </section> | |
| <footer data-role="footer" data-position="fixed"> | |
| <h1>footer</h1> | |
| </footer> | |
| </div> | |
| <script src="scripts/app.js" type="text/javascript"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment