jquery-mobile/index.html
scottjehl d5cbcf755b Created a themes directory and moved all CSS and images there.
Edited the PHP combiner and .htaccess logic to accommodate this change, as well as allowing manifest files to use a "../" when referencing files, which will be handy when adding themes that don't include structural files yet.

Modified all HTML files to point to /themes/default for their theme.
2010-10-13 13:26:23 -04:00

45 lines
No EOL
1.6 KiB
HTML
Executable file

<!DOCTYPE html>
<html>
<head>
<title>jQuery UI Mobile Framework - Documentation</title>
<link rel="stylesheet" href="themes/default" />
<script type="text/javascript" src="js/all"></script>
</head>
<body>
<div data-role="page" data-theme="b">
<div data-role="header" data-theme="c">
<h1>jQuery Mobile</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b">
<li data-role="list-divider">Demos &amp; Documentation</li>
<li><a href="docs/intro.html">Introduction to jQuery Mobile</a></li>
<li><a href="docs/themes.html">Theme system</a></li>
<li><a href="docs/pages/index.html">Pages &amp; dialogs</a></li>
<li><a href="docs/toolbars/index.html">Header, footer &amp; nav bars</a></li>
<li><a href="docs/content/index.html">Content formatting</a></li>
<li><a href="docs/buttons/index.html">Buttons</a></li>
<li><a href="docs/forms/index.html">Form elements</a></li>
<li><a href="docs/lists/index.html">List views</a></li>
<li><a href="docs/events.html">Events</a></li>
</ul>
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b">
<li data-role="list-divider">Demos</li>
<li><a href="experiments/api-browser/index.html">jQuery API browser</a></li>
<li><a href="experiments/photos">Photo viewer</a></li>
<li><a href="experiments/converter">Converter</a></li>
</ul>
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="b">
<li data-role="list-divider">Experiments</li>
<li><a href="experiments/ui-datepicker">Date picker styling</a></li>
</ul>
</div>
</div>
</body>
</html>