-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (63 loc) · 2.52 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
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Christian B. Mendl">
<title>GuiTeNet</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123177817-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-123177817-1');
</script>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<!-- GuiTeNet CSS -->
<link href="https://rawgit.com/GuiTeNet/guitenet/master/styles/guitenet.css" rel="stylesheet" type="text/css">
</head>
<body>
<nav class="navbar navbar-expand navbar-dark bg-dark mb-4">
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="tutorial.html">Tutorial</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contribute.html">Contribute</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="https://github.com/GuiTeNet/guitenet"><img src="images/github.svg" width="36" style="filter: invert(100%);"></a></li>
</ul>
</div>
</nav>
<main role="main" class="container">
<h1>GuiTeNet</h1>
<p class="lead">
GuiTeNet is a graphical user interface for (quantum) tensor networks.<br />
Start by drag-and-dropping the blue circle below.<br />
(Reference: <a href="https://arxiv.org/abs/1808.00532">arXiv:1808.00532</a>)
</p>
<svg id="guitenetSvg" width="600" height="400"></svg>
<p>
<pre id="guitenetCode">Generated Python code will appear here</pre>
</p>
</main>
<!-- D3.js -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<!-- GuiTeNet scripts -->
<script src="https://rawgit.com/GuiTeNet/guitenet/master/scripts/operations.js"></script>
<script src="https://rawgit.com/GuiTeNet/guitenet/master/scripts/backend.js"></script>
<script src="https://rawgit.com/GuiTeNet/guitenet/master/scripts/utils.js"></script>
<script src="https://rawgit.com/GuiTeNet/guitenet/master/scripts/main.js"></script>
</body>
</html>