-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_education_training.html
More file actions
41 lines (39 loc) · 1.56 KB
/
page_education_training.html
File metadata and controls
41 lines (39 loc) · 1.56 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
---
layout: page
title: Education and Training
permalink: /education
---
<section class="education-index-hero">
<div class="container" data-aos="fade-up">
<div class="education-index-hero-card">
<div class="education-index-eyebrow">Education and Training</div>
<h1>Comprehensive learning resources for all workflow systems</h1>
<p>Explore workshops, tutorials, and materials curated by the workflows community to help you learn and teach workflow practices.</p>
</div>
</div>
</section>
<section class="education-index-section">
<div class="container" data-aos="fade-up">
<div class="education-index-header">
<h2>Learning resources</h2>
<p>Hands-on training, curated content, and educational programs.</p>
</div>
<div class="education-index-grid">
{% assign education = site.data.education_training | sort: "name" %}
{% for e in education %}
<a class="education-index-card" href="{{ e.url }}" target="_blank" rel="noopener">
{% if e.icon %}
<div class="education-index-logo">
<img src="{{ e.icon }}" alt="{{ e.name }}" />
</div>
{% endif %}
<div class="education-index-body">
<h3>{{ e.name }}</h3>
<p>{{ e.description }}</p>
<span class="education-index-link">Explore resource</span>
</div>
</a>
{% endfor %}
</div>
</div>
</section>