-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
39 lines (30 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<title>Durandal</title>
<link rel="apple-touch-startup-image" href="Content/images/ios-startup-image-landscape.png" media="(orientation:landscape)" />
<link rel="apple-touch-startup-image" href="Content/images/ios-startup-image-portrait.png" media="(orientation:portrait)" />
<link rel="apple-touch-icon" href="Content/images/icon.png" />
<!--Durandal does not require Bootstrap or Font Awesome.
They are used to make the samples look nice.-->
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css">
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css">
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css">
<!--The css in this file makes the modal dialogs work right.-->
<link rel="stylesheet" href="Content/durandal.css" type="text/css" />
<!--Css specific to the samples.-->
<link rel="stylesheet" href="Content/app.css" type="text/css" />
<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" />
</head>
<body>
<div id="applicationHost"></div>
<script type='text/javascript' src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type='text/javascript' src="//ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js"></script>
<!--Durandal's core does not require SammyJS. The router plugin uses it.-->
<script type='text/javascript' src="//cdnjs.cloudflare.com/ajax/libs/sammy.js/0.7.4/sammy.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.0.5/require.min.js" data-main="App/main"></script>
</body>
</html>