jquery-mobile/experiments/ajax-search/_search.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

30 lines
No EOL
663 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Framework - Search Example</title>
<link rel="stylesheet" href="themes/default" />
<script type="text/javascript" src="js/all"></script>
</head>
<body>
<div data-role="page" >
<div data-role="header">
<h1>Search</h1>
</div>
<form method="get" action="_search-results.html" data-role="ajaxform" d>
<label for="term" data-role="nojs">Search:</label>
<input type="search" name="term" id="term" placeholder="search..." />
<button type="submit" data-role="nojs">Search</button>
</form>
<div data-role="content">
<p>No search results yet...</p>
</div>
</div>
</body>
</html>