-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·39 lines (31 loc) · 1.45 KB
/
index.html
File metadata and controls
executable file
·39 lines (31 loc) · 1.45 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title ng-bind="app.name || 'My Tyto App'">My Tyto App</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=0, initial-scale=1.0">
<!-- iOS based mobile stuff -->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-startup-image" href="system/includes/img/splash.png">
<link rel="shortcut icon" href="favicon.ico">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Set a shorter title for iOS6 devices when saved to home screen -->
<meta name="apple-mobile-web-app-title" content="{{ app.name || 'My Tyto App' }}">
<!-- Set Apple icons for when prototype is saved to home screen -->
<link rel="apple-touch-icon-precomposed" href="system/includes/img/icon.png">
<!-- <link rel="apple-touch-icon-precomposed" sizes="72x72" href="system/includes/img/Icon_114x114.png"> -->
<!-- <link rel="apple-touch-icon-precomposed" sizes="57x57" href="system/includes/img/Icon_114x114.png"> -->
<style>
body { overflow: hidden; }
[ng-cloak] { display: none; }
</style>
<script src="system/setup/init.js"></script>
</head>
<body ng-cloak>
<mobile-view></mobile-view>
<!-- <ng-view></ng-view> -->
</body>
</html>