-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 2.04 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>AnkiPlus</title>
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/toastr/toastr.css" />
<!-- endbower -->
</head>
<body ng-app="ankiplus">
<!--[if lt IE 10]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div ui-view></div>
<script type="text/javascript">
window.toastr = require('toastr');
</script>
<!-- bower:js -->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/toastr/toastr.js"></script>
<script src="bower_components/moment/moment.js"></script>
<script src="bower_components/angular-mocks/angular-mocks.js"></script>
<!-- endbower -->
<!-- injector:js -->
<script src="build/blocks/exception/exception.module.dev.js"></script>
<script src="build/blocks/logger/logger.module.dev.js"></script>
<script src="build/blocks/router/router.module.dev.js"></script>
<script src="build/core/core.module.dev.js"></script>
<script src="build/blocks/exception/exception-handler.provider.dev.js"></script>
<script src="build/blocks/router/router-helper.provider.dev.js"></script>
<script src="build/app.dev.js"></script>
<script src="build/blocks/exception/exception.dev.js"></script>
<script src="build/blocks/logger/logger.dev.js"></script>
<script src="build/core/config.dev.js"></script>
<script src="build/core/constants.dev.js"></script>
<script src="build/core/core.route.dev.js"></script>
<!-- endinjector -->
<!-- build:js(.tmp) scripts/templates.js -->
<script src=".tmp/scripts/templates.js"></script>
<!-- endbuild -->
</body>
</html>