Skip to content

Commit 6548ea0

Browse files
committed
Temp top page has been added
1 parent ffd81c2 commit 6548ea0

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

docs/index.html

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Example Apps for the Cytoscape Web</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
line-height: 1.6;
11+
margin: 0;
12+
padding: 0;
13+
background-color: #f4f4f4;
14+
}
15+
.container {
16+
max-width: 800px;
17+
margin: 20px auto;
18+
padding: 20px;
19+
background: #fff;
20+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
21+
}
22+
h1,
23+
h2,
24+
h3 {
25+
color: #333;
26+
}
27+
pre {
28+
background: #f4f4f4;
29+
padding: 10px;
30+
border: 1px solid #ddd;
31+
overflow-x: auto;
32+
}
33+
</style>
34+
</head>
35+
<body>
36+
<div class="container">
37+
<h1>Example Apps for the Cytoscape Web</h1>
38+
39+
<h2>Introduction</h2>
40+
<p>
41+
Cytoscape Web has a built-in <em>App</em> hosting mechanism. This
42+
repository is the reference implementations for using basic functions in
43+
the Apps.
44+
</p>
45+
<p>(TBD)</p>
46+
47+
<h2>Quick Start</h2>
48+
<p>To run all of the apps locally, type:</p>
49+
<pre><code>npm run dev</code></pre>
50+
51+
<h2>Example Apps</h2>
52+
<h3>hello-world</h3>
53+
54+
<h2>Developer's Guide</h2>
55+
<h3>How to build and deploy</h3>
56+
57+
<h2>Create a new App</h2>
58+
</div>
59+
</body>
60+
</html>

0 commit comments

Comments
 (0)