-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (43 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en" style="height: 100%">
<head>
<title>AngularJs CPH Poll</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/favicon.ico?v=2" />
<link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css"
media="screen,projection" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js'></script>
<script src="https://code.angularjs.org/tools/system.js"></script>
<script>
System.config({
packages: {
'': {
defaultExtension: 'js'
}
}
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/2.0.0-alpha.46/angular2.dev.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/2.0.0-alpha.46/router.dev.js"></script>
<script src="https://cdn.firebase.com/js/client/2.3.0/firebase.js"></script>
<script async>
System.import('app/app')
</script>
<style>
.back-image {
background-image: url('app/images/nyhavn.jpg');
background-size: cover;
background-repeat: no-repeat;
}
.fill-parent{
display:block;
height:inherit;
}
</style>
</head>
<body style="background-color: #e8e8e8;height: inherit;" class="back-image">
<app style="display: flex;height:inherit;width: 100%;flex-direction: column;"></app>
</body>
</html>