forked from curran/model-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (31 loc) · 1.48 KB
/
index.html
File metadata and controls
39 lines (31 loc) · 1.48 KB
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
<html ng-app="exampleViewerApp">
<head>
<meta charset="utf-8">
<title>model-contrib</title>
<!-- Angular web application framework -->
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<!-- CodeMirror syntax highlighing code editor -->
<script src="bower_components/codemirror/lib/codemirror.js"></script>
<script src="bower_components/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<script src="bower_components/codemirror/mode/xml/xml.js"></script>
<script src="bower_components/codemirror/mode/javascript/javascript.js"></script>
<script src="bower_components/codemirror/mode/css/css.js"></script>
<link rel="stylesheet" href="bower_components/codemirror/lib/codemirror.css">
<!-- Marked markdown parser -->
<script src="bower_components/marked/lib/marked.js"></script>
<!-- Lodash functional programming utilities -->
<script src="bower_components/lodash/dist/lodash.js"></script>
<!-- Bootstrap CSS -->
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet" type="text/css" />
<!-- Our CSS -->
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- Our Angular application -->
<script src="client.js"> </script>
</head>
<body>
<!-- This div will have content injected into it
by Angular based on routes and view templates -->
<div ng-view></div>
</body>
</html>