-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
83 lines (73 loc) · 2.85 KB
/
template.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DynAlgebra</title>
<!-- Building Blocks -->
<link rel="stylesheet" type="text/css" href="building-blocks/buttons.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/headers.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/input_areas.css" />
<link rel="stylesheet" type="text/css" href="building-blocks/icons/settings_icons.css" />
<!-- Transitions -->
<link rel="stylesheet" href="building-blocks/transitions.css">
<!-- Util CSS: some extra tricks -->
<link rel="stylesheet" href="building-blocks/util.css">
<!-- App CSS -->
<link rel="stylesheet" type="text/css" href="css/app.css" />
<!-- jQuery -->
<script type='text/javascript' src="js/jquery-2.1.1.min.js"></script>
<!-- MathMLJS -->
<script type='text/javascript' src="js/mathml.js"></script>
<!-- TeXZilla -->
<script src="js/TeXZilla.js"></script>
<!-- App Javascript -->
<script src="js/app.js"></script>
</head>
<body role="application" id="list-view">
<section role="region" id="main">
<header class="fixed">
<a id="btn-help"><span class="icon settings-icon help">help</span></a>
<h1 style='float:left;'>DynAlgebra</h1>
<menu type="toolbar">
<a id="btn-add"><span class="icon icon-add">add</span></a>
</menu>
</header>
<article class="scrollable header">
<div id='notebook'>
</div>
</article>
</section>
<section role="region" id="add">
<header class="fixed">
<button id='btn-add-close'><span class="icon icon-close">close</span>
</button>
<menu type="toolbar">
<button id='btn-add-done'>Done</button>
</menu>
<h1 style='float:left;'>New Equation</h1>
</header>
<article class="scrollable header">
<div id='tex-preview' style="margin:5px;">
</div>
<textarea id='tex-input'></textarea>
</article>
</section>
<section role="region" id="help">
<header class="fixed">
<button id='btn-help-back'><span class="icon icon-back">back</span>
</button>
<h1 style='float:left;'>Help</h1>
</header>
<article class="scrollable header">
<p>This is a demo of Dynamic Algebra i.e. "doing algebraic calculations on a computer by direct manipulation".</p>
<p>You can click in some operator to compute it:</p>
<!-- id="help-click" -->
<p>You can click in some variables to replace it:</p>
<!-- id="help-replace" -->
<p>Some more examples:</p>
<!-- id="help-demos" -->
</article>
</section>
<script src="js/setup.js"></script>
</body>
</html>