Skip to content

Instantly share code, notes, and snippets.

@tommedema
Created October 12, 2011 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommedema/1281359 to your computer and use it in GitHub Desktop.
Save tommedema/1281359 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<title>title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="lib/jquery-mobile/jquery.mobile-1.0rc1.css" />
<script type="text/javascript" src="./lib/phonegap-1.1.0.js"></script>
<script type="text/javascript" src="./lib/jquery/jquery-1.6.4.js"></script>
<script type="text/javascript" src="./lib/jquery-mobile/jquery.mobile-1.0rc1.js"></script>
</head>
<body>
<div data-role="page" data-title="TestApp" data-theme="b">
<div data-role="header" data-theme="b">
Header
</div>
<div data-role="content" data-theme="b">
<div data-role="collapsible-set">
<div data-role="collapsible">
<h2>Example Collapsible</h2>
<ul data-role="listview" data-theme="c" data-inset="true" data-split-icon="delete" data-split-theme="b">
<li>
<a href="#">
<h3>Example entry</h3>
<p>More info</p>
</a>
<a href="#">Verwijder</a>
</li>
<li><span>
<h2>Buur toevoegen</h2>
<span data-role="fieldcontain" data-inline="true">
<label for="neighbor-name">Naam:</label>
<input type="text" name="neighbor-name" id="neighbor-name" value="" />
</span>
<div data-role="fieldcontain">
<label for="neighbor-tel">Telefoon nummer:</label>
<input type="tel" name="neighbor-tel" id="neighbor-tel" value="" />
</div>
<div data-role="fieldcontain">
<label for="neighbor-info">Opmerking:</label>
<input type="text" name="neighbor-info" id="neighbor-info" value="" />
</div>
<a id="neighbor-button" name="neighbor-button" href="#" data-role="button" data-inline="true">Toevoegen</a>
</span></li>
</ul>
</div>
</div>
</div>
<div data-role="footer" data-theme="b">
<h1>Versie: 0.0.1</h1>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment