-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.23 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
<html>
<head>
<!-- Normal setting -->
<title>template</title>
<meta charset="utf-8">
<link href="favicon.ico" rel="shortcut icon">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Framework -->
<script src="framework/angular.min.js"></script>
<script src="framework/angular-ui-router.min.js"></script>
<script src="framework/jquery-2.1.3.min.js"></script>
<script src="framework/ui-bootstrap-tpls-0.12.0.min.js"></script>
<!-- Libary -->
<script src="libary/sha512.js"></script>
<!-- Script -->
<script src="script.js"></script>
<script src="com/controllers/mainController.js"></script>
<script src="com/controllers/contentController.js"></script>
<script src="com/services/webData.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="com/views/css/main.css">
<link rel="stylesheet" href="com/views/css/decoration.css">
<link rel="stylesheet" href="com/views/css/content.css">
<link rel="stylesheet" href="com/views/css/item.css">
</head>
<body>
<div ng-app="myApp">
<div ui-view></div>
</div>
</body>
</html>