-
Notifications
You must be signed in to change notification settings - Fork 36
/
page_frameworks.html
61 lines (59 loc) · 2.51 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
60
61
---
layout: page
title: Research Frameworks
permalink: /frameworks
---
<div class="row justify-content-center mb-4 pb-5">
<div class="col-md-8 text-center heading-section ftco-animate">
<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="btn btn-primary mt-3 py-3 px-5">Contribute</a>
</div>
</div>
<div class="row">
{% assign frameworks = site.data.research_frameworks | sort: "name" %}
{% for framework in frameworks %}
<div class="col-md-6 ftco-animate">
<div class="blog-entry" style="min-height: 23em;">
<div class="text p-4 d-block">
{% if framework.icon %}
<p class="text-center">
<a href="{{framework.url}}" target="_blank">
<img src="{{ framework.icon }}" style="max-height: 6em; max-width: 8em;"
alt="{{ framework.name }}" />
</a>
</p>
{% endif %}
<h3 class="heading"><a href="{{framework.url}}" target="_blank">{{framework.name}}</a></h3>
<div class="meta mb-3">
{{ framework.description }}
</div>
<p>
{% 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 %}
</p>
{% if framework.tags %}
<p style="font-size: 0.8em; color: #e83e8c">
{% assign tags = framework.tags | sort %}
{% for tag in tags %}
<span class="tag">/ {{tag}} </span>
{% endfor %}
</p>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>