forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_registries.html
35 lines (33 loc) · 1.08 KB
/
page_registries.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
---
layout: default
title: Workflows Registries
permalink: /registries
---
<article class="post">
<header>
<div class="title">
<h2>Workflows Registries</h2>
<p>
Collection of workflow repositories that host workflow applications
</p>
<a href="/registries/contribute" class="corner-button" style="background-color: #4CA8A9">Contribute</a>
</div>
</header>
<div class="row">
{% assign registries = site.data.registries | sort: "name" %}
{% for registry in registries %}
<a class="col-sm-12 col-md-12 framework" href="{{registry.url}}" target="_blank">
{% if registry.icon %}
<div class="framework-icon">
<img src="{{registry.icon}}" alt="{{registry.name}}" />
</div>
{% endif %}
<div class="framework-content">
<strong>{{registry.name}}</strong>
<p class="description">{{registry.description}}</p>
</div>
</a>
{% endfor %}
</div>
<br />
</article>