-
Notifications
You must be signed in to change notification settings - Fork 84
/
index.html
64 lines (60 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Spotify Music Quiz with Angular</title>
<!-- @exclude -->
<base href="/dist/" />
<!-- @endexclude -->
<!-- @include base.html -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="HandheldFriendly" content="true">
<meta name="description" content="A music quiz with Angular2+ using the Spotify API.">
<meta name="author" content="Lorenz Krautgartner, Fabian Pirklbauer, Sascha Zarhuber">
<link rel="icon" href="assets/favicon.ico?v=<!-- @echo config.buildTimestamp -->" type="image/x-icon">
<link rel="stylesheet" href="css/app.css?v=<!-- @echo config.buildTimestamp -->">
</head>
<body class="cyan white-text">
<quiz-app>
</quiz-app>
<div id="app-loading">
<div class="loader running">
</div>
</div>
<div id="exception-modal" class="modal">
<div class="modal-content">
<h5 class="blue-grey-text">Whoops, something went wrong.</h5>
<br>
<p class="black-text">We encountered a problem with the app.</p>
<p class="black-text">If you experience unexpected behavior, please reload the page.</p>
</div>
<div class="modal-footer">
<span class="modal-action modal-close waves-effect waves-teal btn-flat">Close</span>
<span class="waves-effect waves-teal btn-flat" onclick="window.location.reload(false)">Reload Now</span>
</div>
</div>
<!-- @exclude -->
<script src="/jspm_packages/system.js"></script>
<script src="/system.config.js"></script>
<script>
// Change to 'app/main.prod' to use the
// production entry point while developing
System.import('zone.js')
.then(() => {
return System.import('reflect-metadata')
})
.then(() => {
return System.import('app/main.dev')
})
.then(function(app) {
console.log('Application finished loading and is now running.');
})
.catch(function(err) {
console.log(err);
console.log(err.originalErr);
});
</script>
<!-- @endexclude -->
<!-- @include production.html -->
</body>
</html>