-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavigation.html
124 lines (111 loc) · 4.22 KB
/
navigation.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ReactiveML - Navigation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="./bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
<link href="./bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="./rml.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="./index.html">ReactiveML</a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Menu</span>
Menu
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./tryrml/tryrml.html">Try online</a></li>
<li class="dropdown">
<a href="./documentation.html" class="dropdown-toggle" data-toggle="dropdown">
Documentation <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="./documentation.html"> Manual</a></li>
<li><a href="./tutorial.html">Tutorial</a></li>
</ul>
</li>
<li class="dropdown">
<a href="./examples.html" class="dropdown-toggle" data-toggle="dropdown">
Examples <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="./examples.html"> Basic Examples</a></li>
<li class="divider"></li>
<li><a href="./examples/simulator_elip/index.html">Network Simulation</a></li>
<li><a href="./glonemo/index.html">Glonemo</a></li>
<li><a href="./reactive_asco/index.html">Reactive Asco</a></li>
</ul>
</li>
<li><a href="./videos.html">Videos</a></li>
<li><a href="./publications.html">Publications</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</div> <!-- /navbar-collapse -->
</div> <!-- /container -->
</div>
<h1>Navigation</h1>
<hr>
<p>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./tryrml/tryrml.html">Try online</a></li>
<li><a href="./documentation.html">Documentation</a></li>
<li><a href="./examples.html">Examples</a></li>
<li><a href="./videos.html">Videos</a></li>
<li><a href="./publications.html">Publications</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</p>
<div class="row">
<div class="col-md-12">
<hr>
<div class="footer">
<div class="row">
<div class="col-md-6">
<p>
<small>
<a href="./navigation.html">navigation</a>
</small>
</p>
</div> <!-- /col-md-6 -->
<div class="col-md-6">
<p style="text-align: right">
<small>
<a href="./distrib">ReactiveML version 1.09.07</a><br>
2021-07-26 <a href="./distrib/changes">changes</a>
<!-- <br> -->
<!-- Warning: incompatible changes with previous versions are marked with <tt>*</tt>: <a href="distrib/changes">changes</a> -->
</small>
</p>
</div> <!-- /col-md-6 -->
</div> <!-- /row -->
</div> <!-- /footer -->
</div> <!-- /col-md-12 -->
</div> <!-- /row -->
</div> <!-- /container -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37633890-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="./bootstrap/js/jquery.js"></script>
<script type="text/javascript" src="./bootstrap/js/bootstrap.min.js"></script>
</body>
</html>