-
Notifications
You must be signed in to change notification settings - Fork 425
/
index.html
40 lines (40 loc) · 1.87 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
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<link rel=manifest href=./manifest.json>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0, minimal-ui">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- For iPad with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="assets/icons/apple-touch-icon-152x152-precomposed.png">
<!-- For iPhone with high-resolution Retina display running iOS ≥ 7: -->
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="assets/icons/apple-touch-icon-120x120-precomposed.png">
<!-- For the iPad mini and the first- and second-generation iPad on iOS ≥ 7: -->
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="assets/icons/apple-touch-icon-76x76-precomposed.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="assets/icons/apple-touch-icon-precomposed.png">
<!-- For Android 3.x+ devices: -->
<link rel="icon" sizes="196x196" href="assets/icons/apple-touch-icon.png">
<title>Montage Popcorn</title>
<link rel="preload" href="assets/style/style.css" as="style">
<link rel="stylesheet" href="assets/style/style.css" />
<script src="node_modules/montage/montage.js"></script>
<script type="text/montage-serialization">
{
"owner": {
"prototype": "montage/ui/montage-studio-loader.reel",
"values": {
"minimumLoadingDuration": 6000
}
},
"localizer": {
"object": "montage/core/localizer[defaultLocalizer]"
}
}
</script>
</head>
<body>
<div class="loading">Loading</div>
</body>
</html>