-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.42 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.42 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
---
layout: default
---
<div style="width: 100%; line-height: 1em">
<h1 style="margin-bottom: 0">PegasusHub</h1><br/>
<span style="color: #999">A Community-enabled Workflows Repository for Pegasus</span>
</div>
<p style="margin-top: 2em">
PegasusHub provides a <strong>curated</strong> collection of open source
<a href="https://pegasus.isi.edu" target="_blank">Pegasus</a> workflow repositories hosted at
<a href="https://github.com" target="_blank">GitHub</a>. Currently, the hub hosts
<strong>{{ site.workflows.size }}</strong> workflow repositories.
</p>
<br/>
<!-- <hr/> -->
<h2 style="margin-top: 0">Highlighted Workflows</h2>
<br>
{% assign filtered_wf = site.workflows | where: "highlight", "true" | sort: "priority" | reverse %}
{% for wf in filtered_wf %}
<a class="listing" href="{{ wf.url }}">
<div class="date-list">
{{ wf.last_update }}
</div>
<h1>{{ wf.repo_name }}</h1>
<p>{{ wf.description }}</p>
<div>
{% if wf.training %}
<span class="training-topic">
<i class="fas fa-chalkboard-teacher"></i>
training workflow
</span>
{% endif %}
{% for t in wf.tags %}
<span class="topic"><nobr>{{ t }}</nobr></span>
{% endfor %}
</div>
</a>
{% endfor %}
<a href="/workflows" class="button" style="margin-top: 2em">See all workflow repositories</a>