-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
47 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Moniel</title>
<!-- Ace editor (custom mode + few tweaks) -->
<script src="node_modules/ace-moniel-builds/src/ace.js"></script>
<script src="node_modules/ace-moniel-builds/src/ext-language_tools.js"></script>
<!-- FiraCode (gorgeous font) -->
<link rel="stylesheet" href="node_modules/fira-code/distr/fira_code.css" />
<script>
// jQuery (our favorite zombie)
window.$ = window.jQuery = require("jquery")
// Ohm/JS from HARC (what happened to CDG?)
window.ohm = require("ohm-js")
// React (of course)
window.React = require("react")
window.ReactDOM = require("react-dom")
// lodash + graphlib + dagre + D3 (pure awesomness)
window._ = require("lodash")
window.graphlib = require("graphlib")
window.dagre = require("dagre")
window.d3 = require("d3")
// for pretty colors
window.ColorHash = require("color-hash")
</script>
<!-- (hello) Moniel -->
<script src="src/bundle.js"></script>
<link rel="stylesheet" type="text/css" href="src/bundle.css" />
</head>
<body>
<div id="moniel"></div>
</body>
</html>