-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
46 lines (42 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Collage Development Dashboard</title>
<link rel="stylesheet" href="/dev/style.css">
</head>
<body class="app">
<header>
<h1>Collage Development Dashboard</h1>
</header>
<aside>
<nav>
<section>
<h2>Features</h2>
<a id="createcontext" href="/src/core/create-context/samples/" target="nav-target">Create Context</a>
<a id="embedding" href="/src/elements/samples/" target="nav-target">Embedding a Fragment</a>
<a id="servicecalls" href="/src/core/services-plugin/service-functions/samples/" target="nav-target">Service Calls</a>
<a id="modal" href="/src/core/services-plugin/service-functions/samples/modalArrangement.html" target="nav-target">Modal Service</a>
<a id="directfunctions" href="/src/core/direct-functions-plugin/samples/" target="nav-target">Direct Functions</a>
<a id="simpletopics" href="/src/core/topics-plugin/simple-topics/samples/" target="nav-target">Simple Topics</a>
<a id="servicetopics" href="/src/core/topics-plugin/service-topics/samples/" target="nav-target">Service Topics</a>
<a id="config" href="/src/core/config-plugin/samples/" target="nav-target">Config</a>
<!-- <a id="reloadBug" href="/src/core/handshake-plugin/samples/locationReloadArrangement.html" target="nav-target">Reload bug</a> -->
</section>
<section>
<h2>Docs</h2>
<a href="http://localhost:8090/" target="nav-target">Collage Doc</a>
</section>
<section>
<h2>Conecpt Discussions</h2>
<a href="/concept-tests/connections/" target="nav-target">Connections</a>
</section>
</nav>
</aside>
<main>
<iframe name="nav-target"></iframe>
</main>
</body>
</html>