-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
55 lines (42 loc) · 2.28 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
<!DOCTYPE html>
<html ng-app="ranking_board">
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- testing for social sharing -->
<meta property="og:image" content="assets/img/viking.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="200">
<meta property="og:image:height" content="200">
<title>太阁极客榜</title>
<link rel='shortcut icon' href='assets/favicons/favicon.ico' type='image/x-icon' />
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- AngularJS -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
<!--<script src="assets/vender_components/chart-annotation-js/Chart.Annotation.min.js"></script>-->
<!-- build:js js/combine.min.js -->
<script src="assets/vender_components/firebase/firebase.js"></script>
<script src="bower_components/Chart.js/dist/Chart.js"></script>
<script src="assets/vender_components/angular-chart-2.0/angular-chart.js"></script>
<script src="app/app.module.js"></script>
<script src="app/pages/home/homeController.js"></script>
<!-- endbuild -->
<!-- build:css css/combine.min.css -->
<link rel='stylesheet' href='bower_components/typicons.font/src/font/typicons.css'>
<link rel="stylesheet" href="app/components/jumbotron/jumbotron.css">
<link rel="stylesheet" href="app/components/ranking_table/ranking_table.css">
<link rel="stylesheet" href="app/components/footer/footer.css">
<!-- endbuild -->
</head>
<body>
<!-- ranking-board -->
<ng-include src="'app/pages/home/home.html'"></ng-include>
<!-- 3rd party plugin -->
<ng-include src="'app/components/addthis/addthis.html'"></ng-include>
<ng-include src="'app/components/google_analysis/google_analysis.html'"></ng-include>
<!--<ng-include src="'app/components/ribbon/ribbon.html'"></ng-include>-->
</body>
</html>