Skip to content

Instantly share code, notes, and snippets.

@stevenpsmith
Created December 12, 2011 20:56
Show Gist options
  • Save stevenpsmith/1469056 to your computer and use it in GitHub Desktop.
Save stevenpsmith/1469056 to your computer and use it in GitHub Desktop.
<!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