Created
December 12, 2011 20:56
-
-
Save stevenpsmith/1469056 to your computer and use it in GitHub Desktop.
This file contains 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>Exercise</title> | |
<link rel="stylesheet" href="style/jquery.mobile-1.0.css" /> | |
<script src="js/vendor/jquery-1.6.4.min.js"></script> | |
<script src="js/vendor/jquery.mobile-1.0.min.js"></script> | |
<script src="js/vendor/underscore.js"></script> | |
<script src="js/vendor/backbone.js"></script> | |
<!-- maximum scale added to stop zoom on select controls --> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> | |
</head> | |
<body> | |
<div data-role="page" id="activities"> | |
<div data-role="header"> | |
<h1>Activities</h1> | |
</div> | |
<div data-role="content"> | |
<ul data-role="listview"> | |
<li><a href="#">There is nothing in my list yet</a></li> | |
</ul> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment