-
Notifications
You must be signed in to change notification settings - Fork 1
/
pipeline_exp.html
118 lines (106 loc) · 3.72 KB
/
pipeline_exp.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8"/>
<title>Pipeline Viewer</title>
<link rel="stylesheet" href="/pipeline.css">
<script src="http://gsmobile.tiddlyspace.com/modernizr-2.6.2.js"></script>
</head>
<body>
<header class="topbar">
<div>
<nav>
<ul>
<li><a href="add.html">add project</a></li>
<li><a href="pipeline.html">pipeline</a></li>
</ul>
</nav>
<h1>Pipeline Tool</h1>
</div>
</header>
<div class="wrapper">
<div class="project">
<section class="details">
<header>
<h2 class="subtitle sector">Finance</h2>
<h1>Project Name</h1>
</header>
<div class="origin">
<a href="#">Research</a>
</div>
</section>
<section class="owners">
<div class="lead">
<h2 class="subtitle">Lead</h2>
<span>Colm Britton</span>
</div>
<div class="sponsor">
<h2 class="subtitle">Sponsor</h2>
<span>Chris Dent</span>
</div>
</section>
</div>
<div class="project rag_green">
<section class="details">
<header>
<h2 class="subtitle sector">Finance</h2>
<h1>Project Name</h1>
</header>
<div class="origin">
<a href="#">Research</a>
</div>
</section>
<section class="owners">
<div class="lead">
<h2 class="subtitle">Lead</h2>
<span>Colm Britton</span>
</div>
<div class="sponsor">
<h2 class="subtitle">Sponsor</h2>
<span>Chris Dent</span>
</div>
</section>
</div>
<ul class="rag-status clearfix">
<li><a href="red">Red</a></li>
<li><a href="amber">Amber</a></li>
<li><a href="green">Green</a></li>
</ul>
<ul class="rag-status clearfix">
<li><a href="red">Red</a></li>
<li><a class="current" href="amber">Amber</a></li>
<li><a href="green">Green</a></li>
</ul>
<div class="project rag_green filteredout">
<section class="details">
<header>
<h2 class="subtitle sector">Finance</h2>
<h1>Project Name</h1>
</header>
<div class="origin">
<a href="#">Research</a>
</div>
</section>
<section class="owners">
<div class="lead">
<h2 class="subtitle">Lead</h2>
<span>Colm Britton</span>
</div>
<div class="sponsor">
<h2 class="subtitle">Sponsor</h2>
<span>Chris Dent</span>
</div>
</section>
</div>
</div>
<footer>
<p>Brought to you by <a href="http://tiddlyspace.com">TiddlySpace</a></p>
</footer>
<script src="/bags/common/tiddlers/jquery.js"></script>
<script src="/status.js"></script>
<script src="/pipeline.js"></script>
</body>
</html>