-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpipelines.html
64 lines (61 loc) · 1.94 KB
/
pipelines.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
---
layout: pipe
title: "Pipelines"
permalink: pipelines.html
group: "navigation"
order: 2
---
<div class='section'>
<div class='section-title'>Categories</div>
<ul id="categories">
{% for categories in site.data.gkno-web-content.categories %}
<li id='{{ categories[0] }}'>
<div>{{ categories[0] }}</div>
<div>
<div class='description'>
<ul class='pipelines'>
{% for catPipeline in categories[1] %}
<li style="padding-top:5px;">
<div style="display:table">
<a style="display:table-cell;width:200px" href="#{{ catPipeline }}">{{ catPipeline }}</a>
{% assign pipeline = site.data.gkno-web-content.pipelines[catPipeline] %}
<div style="display:table-cell">{{ pipeline.description }}<div>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
</li>
{% endfor %}
</ul>
</div>
<div class='section'>
<div class='section-title'>Pipelines</div>
<ul id="pipelines">
{% for pipelines in site.data.gkno-web-content.pipelines %}
<li id='{{ pipelines[0] }}' style="padding-top:65px">
<div>{{ pipelines[0] }}</div>
<div class="description">
{{pipelines[1].description}}
</div>
<div style="overflow:scroll">
<img src="public/images/pipelines/{{ pipelines[0] }}.png" onError="style.display = 'none';" />
</div>
<div class="description">
<br>Arguments
<table style="font-size:11px">
{% for argument in pipelines[1].arguments %}
<tr>
<td style="width:30px">{{ argument["short form argument"] }}</td>
<td style="width:200px">{{ argument["long form argument"] }}</td>
<td>{{ argument["data type"] }}</td>
<td>{{ argument["description"] }}</td>
</tr>
{% endfor %}
</table>
<div>
</li>
{% endfor %}
</ul>
</div>