Last active
August 29, 2015 14:23
-
-
Save gvorster/69a01fee6caee38aa5f9 to your computer and use it in GitHub Desktop.
JQuery Mobile template
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>My Page</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> | |
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> | |
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> | |
</head> | |
<body> | |
<div data-role="page"> | |
<div data-role="header"> | |
<h1>My Title</h1> | |
</div><!-- /header --> | |
<div data-role="content"> | |
<p>Hello world</p> | |
</div><!-- /content --> | |
<div data-role="footer"> | |
<h4>My 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