-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpage_systems.html
92 lines (87 loc) · 3.95 KB
/
page_systems.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
---
layout: page
title: Workflows Systems
permalink: /systems
---
{% assign wci_systems = site.systems | where: "wci_metadata", "true" | size %}
{% assign systems_wci = site.systems | where: "wci_metadata", "true" | sort: "date_sort" | reverse %}
{% assign systems = site.systems | where: "wci_metadata", "false" | sort: "date_sort" | reverse %}
<div class="row justify-content-center mb-4 pb-5">
<div class="col-md-8 text-center heading-section ftco-animate">
<p>
Collection of actively-developed open source workflow systems. Currently, <strong>{{ wci_systems }} workflow systems provide WCI metadata.</strong>
</p>
<a href="/systems/contribute" class="btn btn-primary mt-3 py-3 px-5">Contribute</a>
</div>
</div>
<div class="row">
<!-- WCI Metadata -->
{% for system in systems_wci %}
<div class="col-md-6 ftco-animate">
<div class="blog-entry" style="min-height: 27em;">
<div class="text p-4 d-block">
{% if system.avatar %}
<p class="text-center">
<a href="{{system.url}}">
<img src="{{ system.avatar }}" style="max-height: 6em; max-width: 8em;"
alt="{{ system.repository }}" />
</a>
</p>
{% endif %}
<h3 class="heading"><a href="{{system.url}}">{{system.title}}</a></h3>
<div class="meta mb-3">
{{ system.headline }}
</div>
<p style="font-size: 0.8em">
<span class="light-gray"><i class="fas fa-code"></i> {{system.language}}</span><br />
{% if system.release_name != "" %}
<span class="light-gray"><i class="fas fa-box-open"></i> {{system.release_name}}</span><br />
{% endif %}
<span class="light-gray"><i class="far fa-clock"></i> {{system.last_update}}</span><br />
{% if system.wci_metadata %}
<span class="light-gray"><img src="/favicon.ico" style="max-width: 2.5em; vertical-align: middle" />
WCI metadata</span>
{% endif %}
</p>
</div>
</div>
</div>
{% endfor %}
<!-- No WCI Metadata -->
{% for system in systems %}
<div class="col-md-6 ftco-animate">
<div class="blog-entry" style="min-height: 27em;">
<div class="text p-4 d-block">
{% if system.avatar %}
<p class="text-center">
<a href="{{system.url}}">
<img src="{{ system.avatar }}" style="max-height: 6em; max-width: 8em;"
alt="{{ system.repository }}" />
</a>
</p>
{% endif %}
<h3 class="heading"><a href="{{system.url}}">{{system.title}}</a></h3>
<div class="meta mb-3">
{{ system.headline }}
</div>
<p style="font-size: 0.8em">
<span class="light-gray"><i class="fas fa-code"></i> {{system.language}}</span><br />
{% if system.release_name != "" %}
<span class="light-gray"><i class="fas fa-box-open"></i> {{system.release_name}}</span><br />
{% endif %}
<span class="light-gray"><i class="far fa-clock"></i> {{system.last_update}}</span><br />
</p>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="row justify-content-center mb-4 pb-5 mt-5">
<div class="col-md-8 text-center heading-section ftco-animate">
<p>
For a comprehensive lists of all known computational workflow systems, see <a
href="https://s.apache.org/existing-workflow-systems">Computational Data Analysis Workflow Systems</a>
maintained by the CWL community.
</p>
</div>
</div>