Skip to content

Commit

Permalink
Add the OC
Browse files Browse the repository at this point in the history
  • Loading branch information
mporcheron authored Apr 10, 2024
1 parent 18399f6 commit b6917e2
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 69 deletions.
114 changes: 45 additions & 69 deletions _data/oc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,100 +12,76 @@
- programme:
label: Programme chairs
people:
- name: Joe Deville
institution: Lancaster University
- name: James Sprinks
institution: Earthwatch Europe
country: UK
- name: Helena Webb
institution: University of Nottingham
country: UK
- papers:
label: Papers chairs
people:
- name: Burak Yuksek
institution: Cranfield University
- name: Boyoung Kim
institution: George Mason University
country: Korea
- name: Luke Moffat
institution: Lancaster University
country: UK
- name: Ata Jahangir Moshaydi
institution: Jiangxi University of Science and Technology
country: China
- name: Katie Parnell
institution: University of Southampton
country: UK
- name: Paul Robinette
institution: University of Massachusetts Lowell
country: US
- posters:
label: Posters chairs
people:
- name: Jeremie Clos
institution: University of Nottingham
- name: Carl Dickinson
institution: Newcastle University
country: UK
- name: Xinwei Fang
institution: University of York
- name: Gisela Reyes-Cruz
institution: University of Nottingham
country: UK
- local:
label: Local Arrangements chair
people:
- name: Peter McKenna
- name: Marta Romeo
institution: Heriot-Watt University
country: Edinburgh
- finance:
label: Finance chair
people:
- name: Angela Westley
institution: University of Southampton
country: UK
- travelgrants:
label: Travel Grants chairs
people:
- name: Swaroop Panda
institution: Durham University
country: UK
- name: Suet Lee
institution: University of Bristol
country: UK
- name: Ben Coomber
institution: University of Nottingham
country: UK
- publicity:
label: Publicity chairs
- workshops:
label: Workshops chairs
people:
- name: Liz Dowthwaite
- name: Cynthia Matuszek
institution: University of Maryland, Baltimore County
country: US
- name: Eike Schneiders
institution: University of Nottingham
country: UK
- name: Katie Drury
institution: University of Bristol
country: UK
- name: Lou Male
institution: University of Southampton
country: UK
- registration:
label: Diversity & Accessibility chairs
- accessibility:
label: Local Arrangements chair
people:
- name: Genovefa Kefalidou
institution: University of Leicester
country: UK
- name: Gisela Reyes-Cruz
institution: University of Nottingham
country: UK
- sv:
label: Student Volunteers
people:
- name: Adeshola Lawal
institution: University of Southampton
country: UK
- name: Eryn Rigley
institution: University of Southampton
country: UK
- name: Alison Tebbutt
institution: University of Southampton
country: UK
- ecr:
label: Early Career Researchers
label: Early Career and Doctoral chair
people:
- name: Zhengxin (Cynthia) Yu
institution: Lancaster University
country: UK
- name: Mohammad Soorati
institution: University of Southampton
country: UK
- ops:
label: Operations Support
people:
- name: Laura Armstrong
institution: University of Southampton
- name: Horia Maior
institution: University of Nottingham
country: UK

- local:
label: Local Arrangements chair
people:
- name: Sam Baker
institution: University of Texas at Austin
country: US
- name: Katie Bradford
institution: University of Texas at Austin
country: US
- name: Lea Sabatini
institution: University of Texas at Austin
country: US
- name: Luis Sentis
institution: University of Texas at Austin
country: US

29 changes: 29 additions & 0 deletions organisers/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: About us
label: Organisers
description: Information on !!conference.longname!! organisers.

splash_title: Organisers of !!conference.shortname!!

lastmod: page

menu:
main:
title: Organisers
identifier: organisers
weight: 11
---

<p>
The organisation of the {{ site.conference.shortname }} is supported by many teams of colleagues. We are grateful to everyone for their dedicated work. Below you can find information about these teams:
</p>

<ul>
{% for item in site.menus.organisers %}
<li>
<a class="" href="{{ item.url | absolute_url }}" title="{{ item.alt | escape | replace: "!!conference.year!!", site.conference.year | replace: "!!conference.location!!", site.conference.location | replace: "!!conference.dates!!", site.conference.dates }}">
{{ item.title }}
</a>
</li>
{% endfor %}
</ul>
45 changes: 45 additions & 0 deletions organisers/oc.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: Organising Committee
label: Organising Committee
description: The Organising Committee for !!conference.shortname!!.
lastmod:
type: data
file: oc.yml

menus:
organisers:
title: Organising Committee
alt: Volunteers leading the organisation and running of the !!conference.longname!!
weight: 2
---

{% assign num_roles_chairs = site.data.oc | size %}
{% assign half_num_roles_chairs = num_roles_chairs | plus: 1 | divided_by: 2%}

<div class="row">
<div class="col-md-6 col-12 mblast-0">
{% for chairs in site.data.oc offset:0 limit:half_num_roles_chairs %}{% for role in chairs %}

<h2 class="h4">{{ role[1].label }} <a href="{{ role.email }}" title="Retrieve the email address for {{ site.conference.shortname }} {{ role[1].label }}"><span alt="An envelope icon" class="d-inline-block icon-email ml-1"></span></a></h2>
<ul class="list-unstyled">
{% for people in role[1]['people'] %}
<li class="pb-1">{{ people.name }}<br><span class="text-muted small">{{ people.institution }}<!--, {{ people.country }}--></span></li>
{% endfor %}
</ul>
{% endfor %}{% endfor %}
</div>
<div class="col-md-6 col-12 mblast-0">
{% for chairs in site.data.oc offset:half_num_roles_chairs %}{% for role in chairs %}
<h2 class="h4">{{ role[1].label }} <a href="{{ role[1].email }}" title="Retrieve the email address for {{ site.conference.year }} {{ role[1].label }}"><span alt="An envelope icon" class="d-inline-block icon-email ml-1"></span></a></h2>
<ul class="list-unstyled">
{% for people in role[1]['people'] %}
<li class="pb-1">{{ people.name }}<br><span class="text-muted small">{{ people.institution }}<!--, {{ people.country }}--></span></li>
{% endfor %}
</ul>
{% endfor %}{% endfor %}
</div>
</div>

{% unless forloop.last %}
<hr>
{% endunless %}

0 comments on commit b6917e2

Please sign in to comment.