-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
91 lines (63 loc) · 3.42 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Memory Palace Trainer</title>
<meta name="description" content="john david martin memory palace trainer. Memorize long digits." />
<meta name="keywords" content="memory, palace, memorize, john david martin" />
<!-- THIRD PARTY STYLES -->
<link rel='stylesheet' href='lib/font-awesome-4.3.0/css/font-awesome.css' />
<link rel='stylesheet' href='lib/bootstrap/css/bootstrap.min.css' />
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Lora|Open+Sans|Source+Code+Pro" rel="stylesheet">
<!-- APPLICATION STYLES -->
<link rel='stylesheet' href='styles/styles.css' />
<!-- GLOBAL LIBRARIES AND FRAMEWORK : These libraries can all be used by node types -->
<!-- jQuery -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery.plugins.js"></script>
<script src="lib/jquery/truncate/jquery.truncate.js"></script>
<!-- Underscore -->
<script src="lib/underscore/underscore-1.7.0.min.js"></script>
<!-- Angular.js -->
<script src="lib/angular-1.4.1/angular.js"></script>
<script src="lib/angular-1.4.1/angular-cookies.min.js"></script>
<script src="lib/angular-1.4.1/angular-loader.min.js"></script>
<script src="lib/angular-1.4.1/angular-resource.min.js"></script>
<script src="lib/angular-1.4.1/angular-sanitize.min.js"></script>
<script src="lib/angular-1.4.1/angular-touch.min.js"></script>
<script src="lib/angular-1.4.1/angular-animate.min.js"></script>
<!-- angular-ui-router -->
<script src="lib/angular-ui-router/angular-ui-router.js"></script>
<!-- angular-storage -->
<script src="lib/angular-storage/angular-storage.js"></script>
<!-- angular-storage -->
<script src="lib/ui-bootstrap-custom-build/ui-bootstrap-custom-0.14.3-fork-modal.js"></script>
<script src="lib/ui-bootstrap-custom-build/ui-bootstrap-custom-tpls-0.14.3-fork-modal.js"></script>
<!-- APP MODULES -->
<!-- MODULE : MemoryPalace and angular bootstrapping -->
<script src="scripts/modules/MemoryPalace/module.js"></script>
<!-- CLASSES -->
<!-- SERVICES -->
<script src="scripts/modules/MemoryPalace/services/ModalService.svc.js"></script>
<script src="scripts/modules/MemoryPalace/services/MemoryTestService.svc.js"></script>
<!-- DIRECTIVES -->
<script src="scripts/modules/MemoryPalace/directives/mp-main.dir.js"></script>
<script src="scripts/modules/MemoryPalace/directives/mp-memory-test-image-to-number.dir.js"></script>
<script src="scripts/modules/MemoryPalace/directives/mp-memory-test-number-to-image.dir.js"></script>
<!-- INITIALIZATION -->
<script>
(function(){
// when we are ready then start up the main workflow
angular.element(document).ready(function(){
angular.bootstrap(document, ['MemoryPalace']);
});
})();
</script>
</head>
<!-- INITIAL MARKUP -->
<body>
<mp-main></mp-main>
</body>
</html>