-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 2.06 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 lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Physics Notebook</title>
<link rel="stylesheet" href="css/app.css"/>
<link rel="stylesheet" href="css/problemSpace.css"/>
<link rel="stylesheet" href="css/manipulationMenu.css"/>
<link rel="stylesheet" href="css/equationBank.css"/>
<link rel="stylesheet" href="css/sidebars.css"/>
<link rel="stylesheet" href="css/helpMenu.css"/>
<link rel="stylesheet" href="node_modules/mathquill/build/mathquill.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<div id="root">
Loading Physics Notebook...
</div>
<!-- React -->
<script src="node_modules/react/umd/react.development.js"></script>
<!-- <script src="node_modules/react/umd/react.production.min.js"></script> -->
<script src="node_modules/react-dom/umd/react-dom.development.js"></script>
<!-- <script src="node_modules/react-dom/umd/react-dom.production.min.js"></script> -->
<!-- MathQuill -->
<!-- jQuery is purely for MathQuill, try to keep the use of it down to what is required for MathQuill -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="node_modules/jquery/dist/jquery.min.js">\x3C/script>')</script>
<script src="node_modules/mathquill/build/mathquill.js"></script>
<script>
var MQ = MathQuill.getInterface(2);
</script>
<!-- MathJS -->
<script src="node_modules/mathjs/lib/browser/math.js"></script>
<script>mathjs = math</script>
<!-- tex-math-parser -->
<script src="node_modules/tex-math-parser/dist/browser/index.js"></script>
<!-- PhysicsNotbook Entry Point -->
<script src="js/index.js" type="module"></script>
</body>
</html>