jquery-mobile/experiments/progressbar/_progressbar-static.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

34 lines
No EOL
750 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Framework - Static Progressbar Example</title>
<link rel="stylesheet" href="themes/default" />
<script type="text/javascript" src="js/all"></script>
</head>
<body>
<div data-role="page" class="ui-body-c">
<div data-role="header">
<h1>Static Progressbar</h1>
</div>
<div data-role="content">
<h2>Just a simple static progressbar, for future reference.</h2>
<style type="text/css">
.progress { margin: 1em 0; }
.progress-filled { height: 1.5em; margin: -1px; }
</style>
<div class="progress ui-bar-c ui-btn-corner-all">
<div class="progress-filled ui-btn-up-b ui-btn-corner-left" style="width: 30%;"></div>
</div>
</div>
</div>
</body>
</html>