forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_summits.html
40 lines (38 loc) · 1.39 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
36
37
38
39
40
---
layout: default
title: Workflows Community Summits
permalink: /summits
---
<article class="post">
<header>
<div class="title">
<h2>Workflows Community Summits</h2>
<p>
This unique series of events gather researchers, developers, and users from distinct workflow systems and applications
to identify crucial challenges in the workflow community
</p>
</div>
</header>
<div class="row">
{% assign summits = site.summits | sort: 'date' | reverse %}
{% for summit in summits %}
<div class="col-sm-12 col-md-12">
<a href="{{summit.url}}" class="event">
<div class="event-date">
<span class="header">{{summit.date | date: "%b %d" }}</span><br />
<span class="subheader">{{summit.date | date: "%Y" }}</span>
</div>
<div class="event-content">
<span class="time">{{summit.times}}</span><br />
<strong>{{summit.title}}</strong><br />
<i>{{summit.subtitle}}</i><br />
{% if summit.report_link %}
<img src="{{summit.report_badge}}" alt="DOI" style="padding-top: 0.5em" />
{% endif %}
</div>
</a>
</div>
{% endfor %}
</div>
<br />
</article>