Skip to content

Instantly share code, notes, and snippets.

@mhenke
Created March 3, 2013 00:54
Show Gist options
  • Save mhenke/5073968 to your computer and use it in GitHub Desktop.
Save mhenke/5073968 to your computer and use it in GitHub Desktop.
jQuery Mobile - Part 1 envy band jquery mobile codeschool
<!DOCTYPE html>
<html>
<head>
<title>Envy Band</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Envy Band</h1>
</div><!-- /header -->
<div data-role="content">
<h2>2012 Noth America Tour</h2>
<img src="band.gif"/>
<ul data-role="listview" data-filter="true">
<li data-role="listview">June</li>
<li><a href="orlando.html"><h3>Orlando, FL</h3><p>June 6, 7:30pm</p></a></li>
<li><a href="miami.html"><h3>Miami, FL</h3><p>June 13, 7:30pm</p></a></li>
<li><a href="atlanta.html"><h3>Atlanta, GA</h3><p>June 17, 7:30pm</p></a></li>
<li data-role="listview">July</li>
<li><a href="seattle.html"><h3>Seattle, WA</h3><p>July 3, 7:30pm</p></a></li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment