X-Git-Url: https://git.mdrn.pl/ReadingsJQM.git/blobdiff_plain/73c898040d692af217751b7b8f0ff819c7d47004..ff02a3942a2c1c9276ab86c6ccc276e48c9ce94b:/index.html diff --git a/index.html b/index.html index 4bce550..9ca841d 100644 --- a/index.html +++ b/index.html @@ -1,26 +1,71 @@ +<!-- + jQuery Mobile Boilerplate + index.html +--> <!doctype html> <html> <head> + <title> jQuery Mobile Boilerplate </title> + <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <title> jQuery Mobile Boilerplate </title> - <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" /> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-status-bar-style" content="black"> + <meta name="HandheldFriendly" content="True"> + <meta name="MobileOptimized" content="320"> - <!-- if you have a custom theme, add it here --> - <link rel="stylesheet" href="themes/jQuery-Mobile-Boilerplate.css" /> +<!-- Home screen icon Mathias Bynens mathiasbynens.be/notes/touch-icons --> + <!-- For iPhone 4 with high-resolution Retina display: --> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon.png"> + <!-- For first-generation iPad: --> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon.png"> + <!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: --> + <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png"> + <!-- For nokia devices and desktop browsers : --> + <link rel="shortcut icon" href="favicon.ico" /> + + <!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading --> + <meta http-equiv="cleartype" content="on"> + + <!-- jQuery Mobile CSS bits --> + <link rel="stylesheet" href="css/jquery.mobile-1.1.0.min.css" /> + <!-- Custom css --> <link rel="stylesheet" href="css/custom.css" /> - <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script> - <script src="js/application.js"></script> - <script src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script> - + <!-- Javascript includes --> +<!-- XXX min version --> + <script src="js/jquery-1.7.1.js"></script> + <script src="js/mobileinit.js"></script> + <script src="js/ios-orientationchange-fix.min.js"></script> + <script src="js/jquery.mobile-1.1.0.min.js"></script> + <script src="js/app/app.js"></script> + <script src="js/app/reader.js"></script> + + + <!-- Add a Bookmark Bubble for iDevices, and adds a cookie if already shown --> + <script type="text/javascript" src="js/bookmark_bubble.js"></script> + <script type="text/javascript" src="js/example.js"></script> + <script src="js/jquery.cookie.js"></script> + <!-- Startup Images for iDevices --> + <script>(function(){var a;if(navigator.platform==="iPad"){a=window.orientation!==90||window.orientation===-90?"images/startup-tablet-landscape.png":"images/startup-tablet-portrait.png"}else{a=window.devicePixelRatio===2?"images/startup-retina.png":"images/startup.png"}document.write('<link rel="apple-touch-startup-image" href="'+a+'"/>')})()</script> + <!-- The script prevents links from opening in mobile safari. https://gist.github.com/1042026 --> + <script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script> </head> -<body> +<body> + + <div data-role="page" id="reader"> + <div data-role="header"> + <a href="" data-role="back">Back</a> + <h1></h1> + </div> + </div> + + <div data-role="page"> <div data-role="header"> - <h1>jQuery Mobile Boilerplate 1.0</h1> + <h1>jQuery Mobile Boilerplate 1.1</h1> </div> <div data-role="content"> @@ -43,4 +88,4 @@ </div> </body> -</html> \ No newline at end of file +</html>