Skip to content

Commit 0c0ccbf

Browse files
committed
fix jekyll build
1 parent eb2b608 commit 0c0ccbf

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/ISSUE_TEMPLATE/emergent-session-submit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ body:
9494
- type: checkboxes
9595
id: share
9696
attributes:
97-
label: Agreement to Recording and Disemmination
97+
label: Agreement to Recording and Dissemination
9898
description: By submitting this issue, you agree to let us record the session and upload it our YouTube channel.
9999
options:
100100
- label: I agree to record and diseminate this session on YouTube.

formats.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: page
33
title: OSR Session Formats
44
---
55

6-
{% assign panel_sessions = site.data.osr_sessions | where_exp: "session", "session.category == 'roundtable' or session.category == 'panel'" | sort: "sort_order" %}
6+
{% assign scheduled_sessions = site.data.osr_sessions | sort: "sort_order" %}
77
{% assign table_talks = site.data.osr_sessions | where: "category", "tabletalk" | sort: "sort_order" %}
88

99
OSR will have one of the following formats:
@@ -54,8 +54,10 @@ Questions from the audience are encouraged (via chat feature if virtual) and wil
5454

5555
<p align="justify"> In the 2026 OSR, the named round-table and panel sessions include:</p>
5656
<ol>
57-
{% for session in panel_sessions %}
57+
{% for session in scheduled_sessions %}
58+
{% if session.category == "roundtable" or session.category == "panel" %}
5859
<li>{% if session.category == "roundtable" %}OSR Round Table{% else %}OSR Panel{% endif %}: {{ session.title }}</li>
60+
{% endif %}
5961
{% endfor %}
6062
</ol>
6163
<p align="justify"> If you have any question regarding these sessions or would like to be featured, please feel free to contact us at ohbmopenscience@gmail.com.</p>

panel.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ layout: page
33
title: Panels and Round Tables
44
---
55

6-
{% assign panel_sessions = site.data.osr_sessions | where_exp: "session", "session.category == 'roundtable' or session.category == 'panel'" | sort: "sort_order" %}
6+
{% assign scheduled_sessions = site.data.osr_sessions | sort: "sort_order" %}
77

88
The OSR has always been a place to learn and share experiences. In 2026, the current OSR program includes 1 round table and 4 named panels. There is also one additional panel-length slot on Tuesday, June 16 that is still unlabeled, so only the named sessions are listed below. All times on this page are shown for Bordeaux, using the `Europe/Paris` timezone. During the June 15-18, 2026 program, that means CEST (UTC+2).
99

10-
{% for session in panel_sessions %}
10+
{% for session in scheduled_sessions %}
11+
{% if session.category == "roundtable" or session.category == "panel" %}
1112
## {% if session.category == "roundtable" %}OSR Round Table{% else %}OSR Panel{% endif %}: {{ session.title }}
1213
<div id="{{ session.anchor }}"></div>
1314
When: {{ session.start_time }}-{{ session.end_time }} CEST (UTC+2) | {{ session.day_label }} ({{ session.weekday }})
@@ -19,4 +20,5 @@ This {% if session.category == "roundtable" %}round table{% else %}panel{% endif
1920
{{ forloop.index }}. {{ objective }}
2021
{% endfor %}
2122

23+
{% endif %}
2224
{% endfor %}

0 commit comments

Comments
 (0)