-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (54 loc) · 2.81 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>YellowJS Boilerplate</title>
<meta name="description" content="">
<meta name="author" content="Octave & Octave">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<!-- Home screen icon Mathias Bynens http://goo.gl/6nVq0 -->
<!-- For iPhone 4 with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/h/apple-touch-icon.png">
<!-- For first-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/m/apple-touch-icon.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="images/l/apple-touch-icon-precomposed.png">
<!--iOS web app, deletable if not needed -->
<!--the script prevents links from opening in mobile safari. https://gist.github.com/1042026 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<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>
<link rel="apple-touch-startup-image" href="images/l/splash.png">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/application.css">
</head>
<body>
<div id="viewport"></div>
<script id="tpl-home" type="text/x-handlebars-template">
<img src="assets/images/logo.png" alt="YellowJS">
</script>
<!-- JavaScript at the bottom for fast page loading -->
<!--<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>-->
<!-- scripts concatenated and minified via ant build script -->
<!--<script src="js/phonegap-1.3.0.js"></script>-->
<script src="js/libs/helper.js"></script>
<!-- end concatenated and minified scripts-->
<!-- your YellowJS app files-->
<!-- include YellowJS library the way you want (git eternal, minified version, ...-->
<script src="js/libs/yellowjs-0.5-n.js"></script>
<script src="js/app.js"></script>
<!-- models -->
<script src="js/models/my-model.js"></script>
<!-- views -->
<script src="js/views/index.js"></script>
<!-- controllers -->
<script src="js/controllers/index.js"></script>
<!-- end your YellowJS app files-->
<script>
// iPhone Scale Bug Fix, read this when using http://www.blog.highub.com/mobile-2/a-fix-for-iphone-viewport-scale-bug/
MBP.scaleFix();
</script>
<!-- Debugger - remove for production -->
<!-- <script src="https://getfirebug.com/firebug-lite.js"></script> -->
</body>
</html>