mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 14:30:28 +00:00
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.
95 lines
No EOL
2.5 KiB
HTML
Executable file
95 lines
No EOL
2.5 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery Mobile Docs - Lists</title>
|
|
<link rel="stylesheet" href="../../themes/default" />
|
|
<script type="text/javascript" src="../../js/all"></script>
|
|
<script type="text/javascript" src="docs/docs.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page">
|
|
|
|
<div data-role="header">
|
|
<h1>Thumbnails</h1>
|
|
</div><!-- /header -->
|
|
|
|
<div data-role="content">
|
|
|
|
<ul data-role="listview">
|
|
<li>
|
|
<img src="images/album-bb.jpg" />
|
|
<h3><a href="index.html">Broken Bells</a></h3>
|
|
<p>Broken Bells</p>
|
|
<p class="ui-li-aside">$<strong>11.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-hc.jpg" />
|
|
<h3><a href="index.html">Warning</a></h3>
|
|
<p>Hot Chip</p>
|
|
<p class="ui-li-aside">$<strong>12.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-p.jpg" />
|
|
<h3><a href="index.html">Wolfgang Amadeus Phoenix</a></h3>
|
|
<p>Phoenix</p>
|
|
<p class="ui-li-aside">$<strong>11.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-ok.jpg" />
|
|
<h3><a href="index.html">Of The Blue Colour Of The Sky</a></h3>
|
|
<p>Ok Go</p>
|
|
<p class="ui-li-aside">$<strong>10.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-ws.jpg" />
|
|
<h3><a href="index.html">Elephant</a></h3>
|
|
<p>The White Stripes</p>
|
|
<p class="ui-li-aside">$<strong>9.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-rh.jpg" />
|
|
<h3><a href="index.html">Kid A</a></h3>
|
|
<p>Radiohead</p>
|
|
<p class="ui-li-aside">$<strong>11.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-xx.jpg" />
|
|
<h3><a href="index.html">XX</a></h3>
|
|
<p>XX</p>
|
|
<p class="ui-li-aside">$<strong>10.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-mg.jpg" />
|
|
<h3><a href="index.html">Congratulations</a></h3>
|
|
<p>MGMT</p>
|
|
<p class="ui-li-aside">$<strong>12.99</strong></p>
|
|
</li>
|
|
|
|
<li>
|
|
<img src="images/album-ag.jpg" />
|
|
<h3><a href="index.html">Ashes Grammar</a></h3>
|
|
<p>A Sunny Day in Glasgow</p>
|
|
<p class="ui-li-aside">$<strong>11.99</strong></p>
|
|
</li>
|
|
|
|
<li>
|
|
<img src="images/album-k.jpg" />
|
|
<h3><a href="index.html">Hot Fuss</a></h3>
|
|
<p>Killers</p>
|
|
<p class="ui-li-aside">$<strong>12.99</strong></p>
|
|
</li>
|
|
<li>
|
|
<img src="images/album-af.jpg" />
|
|
<h3><a href="index.html">The Suburbs</a></h3>
|
|
<p>Arcade Fire</p>
|
|
<p class="ui-li-aside">$<strong>12.99</strong></p>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
</div><!-- /content -->
|
|
</div><!-- /page -->
|
|
|
|
</body>
|
|
</html> |