-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_workshop.html
More file actions
46 lines (44 loc) · 1.91 KB
/
page_workshop.html
File metadata and controls
46 lines (44 loc) · 1.91 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
---
layout: page
title: Workshops
permalink: /workshops
---
<section class="workshop-index-hero">
<div class="container" data-aos="fade-up">
<div class="workshop-index-hero-card">
<div class="workshop-index-eyebrow">Workshops</div>
<h1>Gatherings that move workflows forward</h1>
<p>Workshop events are associated with a major conference or meeting where researchers, developers, and users from distinct workflow systems share state-of-the-art research and practice.</p>
</div>
</div>
</section>
<section class="workshop-index-section">
<div class="container" data-aos="fade-up">
<div class="workshop-index-header">
<h2>Upcoming and past workshops</h2>
<p>Explore the latest gatherings across the workflows community.</p>
</div>
<div class="workshop-index-grid">
{% assign workshops = site.workshops | sort: 'event_date' | reverse %}
{% for w in workshops %}
<a class="workshop-index-card" href="{{ w.url }}">
<div class="workshop-index-date">
<span>{{ w.event_date | date: "%b" }}</span>
<strong>{{ w.event_date | date: "%d" }}</strong>
<em>{{ w.event_date | date: "%Y" }}</em>
</div>
<div class="workshop-index-body">
<h3>{{ w.title }}</h3>
{% if w.subtitle %}
<p class="workshop-index-subtitle">{{ w.subtitle }}</p>
{% endif %}
<div class="workshop-index-meta">
<span class="workshop-index-location"><i class="fas fa-map-marker-alt"></i> {{ w.location }}</span>
<span class="workshop-index-link">View details</span>
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</section>