forked from BloodHoundAD/BloodHound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (67 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link
type="text/css"
rel="stylesheet"
href="node_modules/@fortawesome/fontawesome-free/css/all.min.css"
/>
<link
type="text/css"
rel="stylesheet"
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<link
type="text/css"
rel="stylesheet"
href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css"
/>
<link type="text/css" rel="stylesheet" href="src/css/styles.css" />
<title>BloodHound</title>
<link rel="icon" href="src/img/favicon.ico" />
<script>
window.$ = window.jQuery = require('jquery');
</script>
<script
src="node_modules/bootstrap/dist/js/bootstrap.min.js"
type="text/javascript"
></script>
<script src="node_modules/lodash/lodash.min.js"></script>
<script src="src/js/jquery-ui.min.js" type="text/javascript"></script>
<script>
window.sigma = require('linkurious');
</script>
<script
src="node_modules/linkurious/dist/plugins.js"
type="text/javascript"
></script>
<script
src="node_modules/dagre/dist/dagre.min.js"
type="text/javascript"
></script>
<link
type="text/css"
rel="stylesheet"
href="node_modules/react-bootstrap-typeahead/css/Typeahead.min.css"
/>
</head>
<body>
<div id="root"></div>
<script>
(function() {
const script = document.createElement('script');
if (process.env.NODE_ENV === 'development') {
script.src = 'http://localhost:9000/dist/bundle.js';
} else {
script.src = './dist/bundle.js';
}
document.write(script.outerHTML);
})();
</script>
</body>
<script>
// You can also require other files to run in this process
require('./renderer.js');
</script>
</html>