-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_registries.html
More file actions
40 lines (38 loc) · 1.58 KB
/
page_registries.html
File metadata and controls
40 lines (38 loc) · 1.58 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
---
layout: page
title: Workflows Registries
permalink: /registries
---
<section class="registry-index-hero">
<div class="container" data-aos="fade-up">
<div class="registry-index-hero-card">
<div class="registry-index-eyebrow">Workflow Registries</div>
<h1>Find curated workflow repositories and catalogs</h1>
<p>Explore community-maintained registries that host workflow applications, descriptions, and reusable assets.</p>
<a href="/registries/contribute" class="btn btn-primary mt-3 py-3 px-5">Contribute</a>
</div>
</div>
</section>
<section class="registry-index-section">
<div class="container" data-aos="fade-up">
<div class="registry-index-header">
<h2>Registries</h2>
<p>Browse workflow catalogs and discover reusable pipelines.</p>
</div>
<div class="registry-index-grid">
{% assign registries = site.data.registries | sort: "name" %}
{% for registry in registries %}
<a class="registry-index-card" href="{{ registry.url }}" target="_blank" rel="noopener">
<div class="registry-index-logo">
<img src="{{ registry.icon }}" alt="{{ registry.name }}" />
</div>
<div class="registry-index-body">
<h3>{{ registry.name }}</h3>
<p>{{ registry.description }}</p>
<span class="registry-index-link">Visit registry</span>
</div>
</a>
{% endfor %}
</div>
</div>
</section>