-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·27 lines (24 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html manifest="cache.manifest">
<head>
<meta charset="utf-8">
<title>Minimal HTML5 iPad Offline Cache Test</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-touch-fullscreen" content="yes" />
<link rel="apple-touch-icon" href="apple-touch-icon.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon.png" /> <!-- note use a different image here -->
<link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon.png" /> <!-- note use a different image here -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="content">
<h1>Minimal HTML5 iPad Offline Cache Test</h1>
<p>Welcome, this page should be cacheable and webclip'able.</p>
<p><em>Don't forget</em> to <a href="http://manifest-validator.com/">validate your cache.manifest</a> file and <a href="http://www.bybjorn.com/723/">read the blogpost</a>.</p>
<img src='images/logo.png' alt="HTML5 logo" />
</section>
<script src="offlinetest.js"></script>
</body>
</html>