-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.64 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./photon/css/photon.min.css">
<link rel="stylesheet" href="./css/text.css">
<link rel="stylesheet" href="./css/layout.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="app/home/home.js"></script>
<title>Beatrice CWL Engine</title>
</head>
<body>
<div class="window">
<div class="window-content">
<div class="pane-group">
<div class="pane-sm sidebar">
<nav class="nav-group">
<h5 class="nav-group-title">Favorites</h5>
<span id="nav_item_home" class="nav-group-item active">
<span class="icon icon-home"></span>
Workflows
</span>
<span id="nav_item_create" class="nav-group-item">
<span class="icon icon-plus-circled"></span>
Create New Workflow
</span>
</nav>
</div>
<div class="pane">
<ul id="index_ul_cwl_files" class="list-group">
<li class="list-group-header">
<input class="form-control" type="text" placeholder="Search for someone">
</li>
</ul>
</div>
</div>
</div>
<footer class="toolbar toolbar-footer">
<h1 class="title">Version 0.0.1</h1>
</footer>
</div>
</body>
</html>