-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
190 lines (166 loc) · 7.68 KB
/
index.html
File metadata and controls
190 lines (166 loc) · 7.68 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE HTML>
<html>
<head>
<title>Orcha</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link href="./resources/favicon.png" rel="icon" type="image/x-icon" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper" class="container">
<div id="sc1" class="sub-container">
<img id="logo" src="./resources/orcha.png">
<h1 id="logo-words">ORCHA</h1>
</div>
<hr>
<div id="sc2" class="sub-container">
<a class="pic-link" href="https://github.com/OrchaJS/Orcha" target="_blank">
<img id="github-logo" src="./resources/github.png">
</a>
<a class="pic-link" href="https://npmjs.com/" target="_blank">
<img id="npm-logo" src="./resources/npm.png">
</a>
</div>
<div id="sc3" class="sub-container hidden">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#about-modal">
About
</button>
<div class="modal fade" id="about-modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">About ORCHA</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
AWS Lambda Orchestrator. Allows you to give a JSON workflow file written in the Amazon States Language, and execute lambda
functions based on your workflow. You can open your workflow in the UI to see a tree diagram of your workflow,
run the workflow based on the inputs you specify, and see the diagram update in real-time as your workflow
runs on AWS. Executing your workflow requires that you have already created those lambda functions in AWS and
have access to them.
</div>
<div class="modal-footer">
<button type="button" class="btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#statement-modal">
Statement
</button>
<div class="modal fade" id="statement-modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Statement</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Orcha is an open-source alternative to AWS Step-functions.
</div>
<div class="modal-footer">
<button type="button" class="btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#team-modal">
Our Team
</button>
<div class="modal fade" id="team-modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div id="git-cards" class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">The Team</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div id="github-cards" class="modal-body">
<div>
<h3>Chris Wong</h3>
</div>
<div>
<a href="https://github.com/cwong8257" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/chriswong2/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="mailTo:chris@orcha.org" target="_blank">
<i class="far fa-envelope"></i>
</a>
</div>
<div>
<h3>Sese Ih</h3>
</div>
<div>
<a href="https://github.com/leccih" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/sese-ih/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="mailTo:sese@orcha.org" target="_blank">
<i class="far fa-envelope"></i>
</a>
</div>
<div>
<h3>Manuel Castro</h3>
</div>
<div>
<a href="https://github.com/manuel-castro" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/manuel-castro-42466273/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="mailTo:manuel@orcha.org" target="_blank">
<i class="far fa-envelope"></i>
</a>
</div>
<div>
<h3>Jonathan Cespedes</h3>
</div>
<div>
<a href="https://github.com/jmiles90" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/jonathanmilescespedes/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://medium.com/@jmilescespedes" target="_blank">
<i class="fab fa-medium"></i>
</a>
<a href="https://www.instagram.com/jsopero/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="mailTo:jonathan@orcha.org" target="_blank">
<i class="far fa-envelope"></i>
</a>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>