forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page_summits.html
35 lines (33 loc) · 1.25 KB
/
page_summits.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: page
title: Workflows Community Summits
permalink: /summits
---
<div class="row justify-content-center mb-4 pb-5">
<div class="col-md-7 text-center heading-section ftco-animate">
<p class="heading-section">
This <strong class="px-3">unique series of events</strong> gather researchers, developers, and users from distinct workflow systems and
applications
to identify crucial challenges in the workflow community
</p>
</div>
</div>
<div class="row">
{% assign summits = site.summits | sort: 'order' | reverse %}
{% for summit in summits %}
<div class="col-md-4 ftco-animate">
<div class="blog-entry" style="min-height: 23.5em;">
<div class="text p-4 d-block">
<div class="meta mb-3">
{{summit.event_date | date: "%b %d, %Y" }}
</div>
<h3 class="heading"><a href="{{summit.url}}">{{summit.title}}</a></h3>
<span class="position">{{summit.subtitle}}</span>
{% if summit.report_link %}
<img src="{{summit.report_badge}}" alt="DOI" style="padding-top: 0.5em" />
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>