BloodHound/index.html

36 lines
1.2 KiB
HTML
Raw Normal View History

2016-07-26 23:29:06 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2016-07-27 00:04:48 +00:00
<title>Bloodhound</title>
2016-07-27 13:49:51 +00:00
<link rel="icon" href="src/img/favicon.ico">
2016-07-26 23:29:06 +00:00
<link type="text/css" rel="stylesheet" href="src/css/font-awesome.min.css">
2016-07-27 00:04:48 +00:00
<link type="text/css" rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
2016-07-26 23:29:06 +00:00
<link type="text/css" rel="stylesheet" href="src/css/styles.css">
<script>window.$ = window.jQuery = require('jquery');</script>
<script>window.sigma = require('linkurious');</script>
2016-07-27 00:04:48 +00:00
<script src="node_modules/linkurious/dist/plugins.min.js" type="text/javascript"></script>
<script src="node_modules/bootstrap-3-typeahead/bootstrap3-typeahead.min.js" type="text/javascript"></script>
2016-07-26 23:29:06 +00:00
</head>
<body>
<div id="root">
</div>
<script>
(function() {
const script = document.createElement('script');
if (process.env.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>