mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-06 07:30:58 +00:00
This makes our include model match the include model on the CDN, and allows devs to make use of mobileinit for debugging some of the samples since that must be set up after jquery.js, but before jquery-mobile.
35 lines
No EOL
752 B
HTML
35 lines
No EOL
752 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>jQuery Mobile Framework - Photo 1</title>
|
|
<link rel="stylesheet" href="../../themes/default/" />
|
|
<script type="text/javascript" src="../../js/jquery.js"></script>
|
|
<script type="text/javascript" src="../../js/"></script>
|
|
<link rel="stylesheet" href="photos.css" />
|
|
<script type="text/javascript" src="photos.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page" data-fullscreen="true" class="photoview">
|
|
|
|
<div data-role="header">
|
|
<h1>A bridge</h1>
|
|
|
|
</div>
|
|
|
|
<div data-role="content" >
|
|
|
|
<img src="images/photo-bridge.jpeg" alt="photo-bridge" />
|
|
|
|
</div>
|
|
|
|
<div data-role="footer">
|
|
<a href="_photo2.html" class="next">Next</a>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |