-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_frameworks.html
More file actions
60 lines (58 loc) · 2.57 KB
/
page_frameworks.html
File metadata and controls
60 lines (58 loc) · 2.57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
layout: page
title: Research Frameworks
permalink: /frameworks
---
<section class="frameworks-index-hero">
<div class="container" data-aos="fade-up">
<div class="frameworks-index-hero-card">
<div class="frameworks-index-eyebrow">Research Frameworks</div>
<h1>Free and open source workflow tools and frameworks</h1>
<p>Explore a curated collection of software tools, libraries, and frameworks designed to accelerate workflow research and development projects.</p>
<a href="/frameworks/contribute" class="btn btn-primary mt-3 py-3 px-5">Contribute</a>
</div>
</div>
</section>
<section class="frameworks-index-section">
<div class="container" data-aos="fade-up">
<div class="frameworks-index-header">
<h2>Frameworks and tools</h2>
<p>Browse workflow research frameworks and supporting libraries.</p>
</div>
<div class="frameworks-index-grid">
{% assign frameworks = site.data.research_frameworks | sort: "name" %}
{% for f in frameworks %}
<a class="frameworks-index-card" href="{{ f.url }}" target="_blank" rel="noopener">
{% if f.icon %}
<div class="frameworks-index-logo">
<img src="{{ f.icon }}" alt="{{ f.name }}" />
</div>
{% endif %}
<div class="frameworks-index-body">
<h3>{{ f.name }}</h3>
<p>{{ f.description }}</p>
<div class="frameworks-index-links">
{% if f.github %}
<span class="frameworks-index-pill"><i class="fab fa-github"></i> GitHub</span>
{% endif %}
{% if f.gitlab %}
<span class="frameworks-index-pill"><i class="fab fa-gitlab"></i> GitLab</span>
{% endif %}
{% if f.documentation %}
<span class="frameworks-index-pill"><i class="fas fa-book"></i> Docs</span>
{% endif %}
</div>
{% if f.tags %}
<div class="frameworks-index-tags">
{% assign tags = f.tags | sort %}
{% for tag in tags %}
<span class="frameworks-index-tag">#{{ tag }}</span>
{% endfor %}
</div>
{% endif %}
</div>
</a>
{% endfor %}
</div>
</div>
</section>