-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
28 lines (28 loc) · 922 Bytes
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="streaver91">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet/less" type="text/css" href="reset.less" />
<link rel="stylesheet" href="bower_components/katex-build/katex.min.css">
<link rel="stylesheet/less" type="text/css" href="main.less" />
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/less/dist/less.js"></script>
<script src="bower_components/katex-build/katex.min.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="math">
<h1>Math Editor for Latex</h1>
<hr />
<div symbols></div>
<hr />
<div source></div>
<hr />
<div editor></div>
</body>
</html>