forked from ITensor/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn.php
79 lines (59 loc) · 2.05 KB
/
learn.php
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ITensor - Intelligent Tensor Library</title>
<meta http-equiv="content-language" content="en" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="icon" href="favicon.ico"/>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">$(document).ready(function(){});</script>
<script type="text/javascript" src="scripts/jquery.corner.js"></script>
<script type="text/javascript" src="scripts/jquery.jeditable.mini.js"></script>
<script type="text/javascript" src="scripts/jquery.autogrow.js"></script>
<script type="text/javascript" src="scripts/jquery.jeditable.autogrow.js"></script>
<style type="text/css">
</style>
</head>
<body>
<div id="main">
<div id="navbar" class="rounded">
<ul>
<li><a href="index.html">Home</a> </li>
<li><a href="news.html">News</a> </li>
<li><a class="thispage" href="learn.php">Learn</a> </li>
<li><a href="contribute.html">Contribute</a></li>
</ul>
</div>
<div id="banner">
<img src="ITensor.png" /></br>
</div>
<div class="full section rounded"> <h2>Documentation</h2> </div>
<div class="full">
<p>
</p>
</div>
<div class="full edit docs" id="input">
<?php
$mdhtml = file_get_contents("/var/www/html/itensor/docs/main_body.html");
echo $mdhtml
?>
</div>
<div id="footer"></div>
<script type="text/javascript">
$(document).ready(function() {
$('.edit').editable('send.cgi', {
type : "textarea",
event : "dblclick",
onblur : "ignore",
cancel : "Cancel",
submit : "OK",
indicator : 'Saving...',
loadurl : "docs/main.md"
});
});
</script>
</div> <!--class="main"-->
<script type="text/javascript">$(function() {$('.rounded').corner("7px");});</script>
</body>
</html>