-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path404.html
More file actions
39 lines (31 loc) · 849 Bytes
/
Copy path404.html
File metadata and controls
39 lines (31 loc) · 849 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./assets/logo.svg" type="image/svg+xml">
<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>
Visual editor for <em>Dataflow programming</em>
</blockquote>
</header>
<main class="content">
<p>Page not found</p>
</main>
<footer>
GitHub: <a href="https://github.com/fibo/flow-view">fibo/flow-view</a>
</footer>
</div>
</body>
</html>