-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpage_bof.html
32 lines (30 loc) · 1.12 KB
/
page_bof.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
---
layout: page
title: Birds of a Feather
permalink: /bof
---
<div class="row justify-content-center mb-4 pb-5">
<div class="col-md-8 text-center heading-section ftco-animate">
<p class="heading-section">
Bird of a Feather (BoF) events are typically associated with a major conference/meeting in which
researchers, developers, and users from distinct workflow systems and applications meet to discuss the
current state-of-the-art and crucial challenges in the workflow community.
</p>
</div>
</div>
<div class="row">
{% assign bofs = site.bofs | sort: 'order' | reverse %}
{% for bof in bofs %}
<div class="col-md-4 ftco-animate">
<div class="blog-entry" style="min-height: 15em;">
<div class="text p-4 d-block">
<div class="meta mb-3">
{{bof.event_date | date: "%b %d, %Y" }}
</div>
<h3 class="heading"><a href="{{bof.url}}">{{bof.title}}</a></h3>
<span class="position">{{bof.subtitle}}</span>
</div>
</div>
</div>
{% endfor %}
</div>