forked from CodewarsClone/Codewars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
23 lines (21 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html ng-app='app'>
<header>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="./dist/styles.css">
<link rel="stylesheet" href="./assets/lib/codemirror.css">
<link rel="stylesheet" href="./assets/lib/tomorrow-night-bright.css">
<link rel="icon" href="favicon.png" />
</header>
<body>
<ui-view></ui-view>
</body>
<script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js" integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30="
crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.15/angular-ui-router.js"></script>
<script src="./assets/lib/codemirror.js"></script>
<script src="./assets/lib/mode/javascript/javascript.js"></script>
<script src="https://use.fontawesome.com/b3416c175c.js"></script>
<script type='text/javascript' src='./dist/bundle.js'></script>
</html>