-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtodo-app.html
43 lines (38 loc) · 1.8 KB
/
todo-app.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
<!DOCTYPE html>
<html>
<head>
<title>Pink - Tasks Demo</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<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, initial-scale=1.0" />
<link rel="apple-touch-startup-image" href="content/imgs/ios-startup-image-landscape.png" media="(orientation:landscape)" />
<link rel="apple-touch-startup-image" href="content/imgs/ios-startup-image-portrait.png" media="(orientation:portrait)" />
<link rel="apple-touch-icon" href="content/imgs/icon.png"/>
<link rel="stylesheet" type="text/css" href="http://cdn.ink.sapo.pt/3.1.1/css/ink.css">
<link rel="stylesheet" type="text/css" href="http://cdn.ink.sapo.pt/3.1.1/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="content/css/pink.css">
<link rel="stylesheet" type="text/css" href="content/css/tasks.css">
</head>
<body>
<div id="applicationHost" data-bind="module: 'App.Tasks.Shell'"></div>
<!-- Load scripts -->
<script type="text/javascript" src="http://cdn.ink.sapo.pt/3.1.1/js/ink-all.js"></script>
<script type="text/javascript">
/*
* Application bootstrap
*
* - Setup Ink lib paths
* - Require app module
*
*/
Ink.setPath('App', 'App/');
Ink.setPath('Pink', 'libs/Pink/');
Ink.requireModules(['App.Tasks'], function(app) {
app.run();
});
</script>
</body>
</html>