-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoffline.html
27 lines (21 loc) · 1.03 KB
/
offline.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
<!-- This uses an offline manifest to make it available without an internet connection -->
<!DOCTYPE html>
<html manifest="framer/app.manifest">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=0.5, maximum-scale=0.5, user-scalable=no, minimal-ui">
<link rel="apple-touch-icon" href="framer/images/icon-120.png">
<link rel="apple-touch-icon" href="framer/images/icon-76.png" sizes="76x76">
<link rel="apple-touch-icon" href="framer/images/icon-120.png" sizes="120x120">
<link rel="apple-touch-icon" href="framer/images/icon-152.png" sizes="152x152">
<link rel="stylesheet" type="text/css" href="framer/style.css">
<script src="framer/coffee-script.js"></script>
<script src="framer/framer.js"></script>
<script src="framer/init.js"></script>
</head>
<body>
</body>
</html>