mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-18 15:00:23 +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
1.3 KiB
HTML
Executable file
35 lines
1.3 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>jQuery Mobile Docs - Content formatting</title>
|
|
<link rel="stylesheet" href="../../themes/default/" />
|
|
<link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
|
|
<script type="text/javascript" src="../../js/jquery.js"></script>
|
|
<script type="text/javascript" src="../../js/"></script>
|
|
<script type="text/javascript" src="../docs/docs.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page" data-theme="b">
|
|
|
|
<div data-role="header" data-theme="b">
|
|
<h1>Content formatting</h1>
|
|
</div><!-- /header -->
|
|
|
|
<div data-role="content">
|
|
<p>The content of pages in jQuery Mobile is completely open-ended, but the jQuery Mobile framework provides a number of helpful tools and widgets — such as collapsible panels and multiple-column grid layouts — to make it easy to format your content for mobile devices.</p>
|
|
|
|
|
|
<ul data-role="listview" data-inset="true">
|
|
<li><a href="content-html.html">Basic HTML styles</a></li>
|
|
<li><a href="content-grids.html">Layout grids (columns)</a></li>
|
|
<li><a href="content-collapsible.html">Collapsible content blocks</a></li>
|
|
<li><a href="content-themes.html">Theming content</a></li>
|
|
<!--<li><a href="api-content.html">API documentation</a></li>-->
|
|
</ul>
|
|
</div><!-- /ui-body wrapper -->
|
|
</div><!-- /page -->
|
|
|
|
</body>
|
|
</html>
|