-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_bof.html
More file actions
42 lines (40 loc) · 1.61 KB
/
page_bof.html
File metadata and controls
42 lines (40 loc) · 1.61 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
---
layout: page
title: Birds of a Feather
permalink: /bof
---
<section class="bof-index-hero">
<div class="container" data-aos="fade-up">
<div class="bof-index-hero-card">
<div class="bof-index-eyebrow">Birds of a Feather</div>
<h1>Focused conversations that connect communities</h1>
<p>BoF events are typically associated with major conferences and meetings where researchers, developers, and users from distinct workflow systems discuss current challenges and opportunities.</p>
</div>
</div>
</section>
<section class="bof-index-section">
<div class="container" data-aos="fade-up">
<div class="bof-index-header">
<h2>BoF sessions</h2>
<p>Explore recent and upcoming birds of a feather gatherings.</p>
</div>
<div class="bof-index-grid">
{% assign bofs = site.bofs | sort: 'order' | reverse %}
{% for bof in bofs %}
<a class="bof-index-card" href="{{ bof.url }}">
<div class="bof-index-logo">
<img src="{{ bof.conference_logo }}" alt="Conference logo" />
</div>
<div class="bof-index-body">
<span class="bof-index-date">{{ bof.event_date | date: "%b %d, %Y" }}</span>
<h3>{{ bof.title }}</h3>
{% if bof.subtitle %}
<p>{{ bof.subtitle }}</p>
{% endif %}
<span class="bof-index-link">View details</span>
</div>
</a>
{% endfor %}
</div>
</div>
</section>