forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_frameworks.html
59 lines (57 loc) · 2.43 KB
/
page_frameworks.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
---
layout: default
title: Research Frameworks
permalink: /frameworks
---
<article class="post">
<header>
<div class="title">
<h2>Research Frameworks</h2>
<p>
Collection of open source or freely accessible tools and frameworks that can be used to support workflow
research and development
</p>
<a href="/frameworks/contribute" class="corner-button" style="background-color: #4CA8A9">Contribute</a>
</div>
</header>
<div class="row">
{% assign frameworks = site.data.research_frameworks | sort: "name" %}
{% for framework in frameworks %}
<div class="col-sm-12 col-md-12 framework">
{% if framework.icon %}
<div class="framework-icon">
<a href="{{framework.url}}" target="_blank"><img src="{{framework.icon}}"
alt="{{framework.name}}" /></a>
</div>
{% endif %}
<div class="framework-content">
<a href="{{framework.url}}" target="_blank"><strong>{{framework.name}}</strong></a>
<p class="description">{{framework.description}}</p>
<div class="badges">
{% if framework.github %}
<a href="{{framework.github}}" target="_blank" class="badge github"><i
class="fab fa-github"></i> GitHub</a>
{% endif %}
{% if framework.gitlab %}
<a href="{{framework.gitlab}}" target="_blank" class="badge gitlab"><i
class="fab fa-gitlab"></i> GitLab</a>
{% endif %}
{% if framework.documentation %}
<a href="{{framework.documentation}}" target="_blank" class="badge documentation"><i
class="fas fa-book"></i> Documentation</a>
{% endif %}
</div>
{% if framework.tags %}
<div class="tags">
{% assign tags = framework.tags | sort %}
{% for tag in tags %}
<span class="tag"><i class="fas fa-circle" style="font-size: 0.7em"></i> {{tag}}</span>
{% endfor %}
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
<br />
</article>