Skip to content

Commit e2e9dca

Browse files
committed
Schedule minor fixes
1 parent 83b8c86 commit e2e9dca

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

content/schedule.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Schedule
2121
.. raw:: html
2222

2323
{% for day_name, day in schedule.schedule|items%}
24-
<h3>{{ day_name }}</h3>
24+
<h3>{{ schedule.meta.days[day_name] }}</h3>
2525

2626
<table class="docutils" style="word-wrap: break-word;">
2727
<tr>

content/schedule.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ meta:
99
other:
1010
name: Other
1111

12+
days:
13+
Monday: "Monday (2 February)"
14+
Tuesday: "Tuesday (3 February)"
15+
Wednesday: "Wednesday (4 February)"
16+
1217
# To have an event NOT appear in the table
1318
# - exclude "time" or "location"
1419
# To have an event NOT appear in the paragraph descriptions:
@@ -209,8 +214,8 @@ schedule:
209214
time: 9:00
210215
- id: panel
211216
time: 10:00
212-
shorttitle: Panel discussion
213-
title: Panel discussion with junior computational researchers
217+
shorttitle: "Panel discussion: HPC experience"
218+
title: "Panel discussion: Junior researcher's experience of HPC and computing"
214219
location: main
215220
abstract: >
216221
Panel discussions are usually full of the most senior people
@@ -231,7 +236,7 @@ schedule:
231236
- id: funding
232237
time: 13:00
233238
title: Local team funding discussion
234-
subtitle: (optional, if there is any interest)
239+
short: (optional, if there is any interest)
235240
location: main
236241
abstract: >
237242
How can universities get infrastructure funding for local

content/sessions.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ invited by the organizers for the SciComp meetup (the second half).
1010

1111
{% for day_name, day in schedule.schedule|items%}
1212

13-
{{day_name}}
13+
{{ schedule.meta.days[day_name] }}
1414
------------------------------------------------------------------------------------------
1515

1616
.. raw:: html
@@ -20,12 +20,12 @@ invited by the organizers for the SciComp meetup (the second half).
2020

2121
<section id="{{event.get("id")}}">
2222
<h3>{{event.title}}
23-
{%if 'location' in event and 'time' in event %}
24-
({{"%02d:%02d"|format(event.time//60, event.time%60)}}, {{schedule.meta.rooms[event.location].name}})
25-
{% endif %}
2623
{% if 'id' in event%}<a class="headerlink" href="#{{event.id}}" title="Link to this heading"></a>{% endif %}
2724
</h3>
28-
{% if 'contributors' in event %}<p><i>Contributors: {{event.get("contributors", "")}}</i></p> {% endif %}
25+
<ul>
26+
{% if 'contributors' in event %}<li><i>Contributors: {{event.get("contributors", "")}}</i></li>{% endif %}
27+
{%if 'location' in event and 'time' in event %}<li><i>Time, Location: {{"%02d:%02d"|format(event.time//60, event.time%60)}}, {{schedule.meta.rooms[event.location].name}}</i></li>{% endif %}
28+
</ul>
2929
3030
{{event.get("abstract") |markdown |remove_newlines }}
3131
</section>

0 commit comments

Comments
 (0)