Last active
December 10, 2015 18:18
-
-
Save tjntun/4473269 to your computer and use it in GitHub Desktop.
jQueryMobile_Boilerplate
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 charset="UTF-8"> | |
| <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" /> | |
| <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
| <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script> | |
| </head> | |
| <body> | |
| <div data-role="page"> | |
| <div data-role="header"> | |
| <h1>Page Title</h1> | |
| </div><!-- /header --> | |
| <div data-role="content"> | |
| <p>Page content goes here.</p> | |
| </div><!-- /content --> | |
| <div data-role="footer"> | |
| <h4>Page Footer</h4> | |
| </div><!-- /footer --> | |
| </div><!-- /page --> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment