-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
31 lines (29 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>Awesome databrowser</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="src/css/styles.css" type="text/css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css">
<script src="bower_components/underscore/underscore-min.js"></script>
<script src="http://fb.me/react-0.13.1.js"></script>
<script src="http://fb.me/JSXTransformer-0.13.1.js"></script>
<script src="bower_components/appbase-js/browser/appbase.js"></script>
<script src="bower_components/elasticsearch/elasticsearch.js"></script>
<script src="bower_components/react-bootstrap/react-bootstrap.js"></script>
<script type="text/jsx" src="config.js"></script>
<script type="text/jsx" src="src/js/feed.js"></script>
<script type="text/jsx" src="src/js/keys.js"></script>
<script type="text/jsx" src="src/js/transitions.js"></script>
<script type="text/jsx" src="src/js/modal.js"></script>
<script type="text/jsx" src="src/js/table.js"></script>
<script type="text/jsx" src="src/js/dropdown.js"></script>
<script type="text/jsx" src="src/js/main.js"></script>
<script type="text/jsx" src="src/js/app.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
</head>
<body>
<div class="container" id="main"></div>
</body>
</html>