-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (44 loc) · 1.3 KB
/
index.html
File metadata and controls
56 lines (44 loc) · 1.3 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="data:image/x-icon;base64,AA" />
<meta name="viewport" content="width=device-width" />
<title>Flow View</title>
<meta name="description" content="Visual editor for Dataflow programming" />
<base href="/flow-view/" />
<link rel="stylesheet" href="./assets/style.css" />
<script type="importmap">
{ "imports": { "flow-view": "./src/flow-view.js" } }
</script>
</head>
<body>
<div class="layout">
<header>
<h1>Flow View</h1>
<blockquote>
is a visual editor for <em>dataflow programming</em>
</blockquote>
</header>
<nav class="navigation">
<h3>Examples</h3>
<ul>
<li>
<a href="./examples/user-interface.html" data-script="./examples/user-interface.js">User interface</a>
</li>
<li>
<a href="./examples/color-schemes.html" data-script="./examples/color-schemes.js">Color schemes</a>
</li>
<li>
<a href="./examples/custom-theme.html" data-script="./examples/custom-theme.js">Custom theme</a>
</li>
</ul>
</nav>
<main class="content"></main>
<footer>
GitHub: <a href="https://github.com/fibo/flow-view">fibo/flow-view</a>
</footer>
</div>
<script src="./assets/navigation.js"></script>
</body>
</html>