AitorAlejandro
3/20/2014 - 4:23 PM

jqm_basic_template.html

<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="utf-8">
  <title>jqm basic template</title>
  <meta name="HandheldFriendly" content="True">
  <meta name="MobileOptimized" content="320">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <!-- For iOS web apps -->
  <meta name="apple-mobile-web-app-capable" content="yes">
  <meta name="apple-mobile-web-app-status-bar-style" content="black">
  <meta name="apple-mobile-web-app-title" content="">

  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
	
	<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
	<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
</head>
<body>
	
	<!-- < #main-page > -->
  <div data-role="page" id="main-page">
  	<div data-role="header">
  		header
  	</div>
  	<div role="main" class="ui-content">
  		main content
  	</div>
  	<div data-role="footer">
  		footer
  	</div>
  </div>
	<!-- </ #main-page > -->

</body>
</html>