-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (79 loc) · 3.8 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
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Kevoree - Model@Runtime approach for distributed and reconfigurable systems</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/darcula.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.27.4/codemirror.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.27.4/addon/lint/lint.min.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/src/theme/kevscript.css">
<link rel="stylesheet" type="text/css" href="/css/style.css" >
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.27.4/codemirror.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/mode.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.27.4/addon/lint/lint.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/lint.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/main.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img src="/images/kevoree.png" alt="Kevoree logo" />
</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/blog/blog.html">Blog</a></li>
<li><a href="/docs/getting-started/what-is-kevoree.html">Docs</a></li>
<li><a href="/download/download.html">Download</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="/about.html">About</a></li>
<li><a href="https://github.com/kevoree" target="_blank" class="nav-icon"><i class="fa fa-github"></i></a></li>
<li><a href="https://twitter.com/kevoree" target="_blank" class="nav-icon"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</div>
</nav>
<div class="top-banner">
<img class="kevoree" src="/images/kevoree-gris.png" alt="Kevoree logo" />
<div class="minitext">Model@runtime approach for distributed and reconfigurable systems
</div>
<div class="buttons-unit">
<a href="/docs/getting-started/what-is-kevoree.html" class="button">Get Started</a>
<a href="/download/download.html" class="button">Download</a>
</div>
</div>
<div class="container">
<div class="col-md-4">
<h3>Component-Based</h3>
<p>Build encapsulated components that manage their own state, receive/send events through inputs/outputs.</p>
<p>Then compose them to make complex systems.</p>
</div>
<div class="col-md-4">
<h3>Heterogeneous</h3>
<p>You can build components for any imaginable platform, <strong>you</strong> choose the language.</p>
<p>Kevoree provides runtimes for Java, NodeJS and recent Web browsers out-of-the-box.</p>
</div>
<div class="col-md-4">
<h3>Distributed</h3>
<p>Manage all your runtimes using the abstraction layer provided by the <a href="http://editor.kevoree.org" target="_blank">Kevoree Web Editor</a></p>
</div>
</div>
<footer>
<div class="container">
<p>Licensed under the <a href="https://www.gnu.org/licenses/lgpl-3.0.en.html">L-GPL 3.0</a></p>
</div>
</footer>
</body>
</html>