jquery-mobile/docs/page.html
2010-10-10 10:41:34 -04:00

59 lines
No EOL
1.5 KiB
HTML
Executable file

<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Docs - Intro</title>
<link rel="stylesheet" media="only all" href="css/all" />
<script type="text/javascript" src="js/all"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Getting started</h1>
<a href="index.html" class="ui-back" data-icon="arrow-l">Home</a>
</div><!-- /header -->
<div data-role="content">
<div class="ui-body ui-body-c">
<pre><code>
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;My page&lt;/title&gt;
&lt;link rel=&quot;stylesheet&quot; media=&quot;only all&quot; href=&quot;css/all&quot; /&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/all&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div data-role=&quot;page&quot;&gt;
&lt;div data-role=&quot;header&quot;&gt;
&lt;h1&gt;My Page&lt;/h1&gt;
&lt;a href=&quot;index.html&quot; class=&quot;ui-back&quot; data-icon=&quot;arrow-l&quot;&gt;Icon&lt;/a&gt;
&lt;/div&gt;&lt;!-- /header --&gt;
&lt;div data-role=&quot;content&quot;&gt;
&lt;div class=&quot;ui-body ui-body-c&quot;&gt;
&lt;/div&gt;&lt;!-- /ui-body wrapper --&gt;
&lt;/div&gt;&lt;!-- /content --&gt;
&lt;div data-role=&quot;footer&quot;&gt;
...footer content goes here...
&lt;/div&gt;&lt;!-- /footer --&gt;
&lt;/div&gt;&lt;!-- /page --&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
</div><!-- /ui-body wrapper -->
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>