-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_reports.html
More file actions
40 lines (38 loc) · 1.54 KB
/
page_reports.html
File metadata and controls
40 lines (38 loc) · 1.54 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: Reports
permalink: /reports
---
<section class="reports-index-hero">
<div class="container" data-aos="fade-up">
<div class="reports-index-hero-card">
<div class="reports-index-eyebrow">Reports</div>
<h1>Workflow research community reports</h1>
<p>Explore peer-contributed insights, findings, and advancements from a global community of workflow researchers and practitioners.</p>
</div>
</div>
</section>
<section class="reports-index-section">
<div class="container" data-aos="fade-up">
<div class="reports-index-header">
<h2>Featured reports</h2>
<p>Curated publications and community analyses worth reading.</p>
</div>
<div class="reports-index-grid">
{% assign reports = site.data.reports | sort: "date" | reverse %}
{% for r in reports %}
<a class="reports-index-card" href="{{ r.url }}" target="_blank" rel="noopener">
<div class="reports-index-media">
<img src="/images/reports/{{ r.image }}" alt="{{ r.title }}" />
</div>
<div class="reports-index-body">
<span class="reports-index-meta">{{ r.publisher }} · {{ r.date | date: "%Y" }}</span>
<h3>{{ r.title }}</h3>
<p>{{ r.subtitle }}</p>
<span class="reports-index-link">Read report</span>
</div>
</a>
{% endfor %}
</div>
</div>
</section>