mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
24 lines
852 B
HTML
24 lines
852 B
HTML
<!DOCTYPE HTML>
|
|
<html class="ui-mobile-rendering">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Dynamic Page Samples</title>
|
|
<link rel="stylesheet" href="../../../css/themes/default/">
|
|
<script data-main="../../../js/jquery.mobile" src="../../../external/requirejs/require.js"></script>
|
|
<script src="../../../js/jquery.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div data-role="page">
|
|
<div data-role="header"><h1>Categories</h1></div>
|
|
<div data-role="content">
|
|
<h2>Select a Category Below:</h2>
|
|
<ul data-role="listview" data-inset="true">
|
|
<li><a href="sample-reuse-page.html" rel="external">Re-using a Page with In-Memory Data</a></li>
|
|
<li><a href="sample-reuse-page-external.html" rel="external">Re-using a Page With External Data</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|