From b6917e25a4f6d72da369cfc914f30302995d9314 Mon Sep 17 00:00:00 2001 From: Martin Porcheron Date: Wed, 10 Apr 2024 07:47:18 +0000 Subject: [PATCH] Add the OC --- _data/oc.yml | 114 +++++++++++++++++------------------------- organisers/index.html | 29 +++++++++++ organisers/oc.html | 45 +++++++++++++++++ 3 files changed, 119 insertions(+), 69 deletions(-) create mode 100644 organisers/index.html create mode 100644 organisers/oc.html diff --git a/_data/oc.yml b/_data/oc.yml index 597b4c7..78958d7 100644 --- a/_data/oc.yml +++ b/_data/oc.yml @@ -12,8 +12,8 @@ - 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 @@ -21,91 +21,67 @@ - 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 + \ No newline at end of file diff --git a/organisers/index.html b/organisers/index.html new file mode 100644 index 0000000..67a7faa --- /dev/null +++ b/organisers/index.html @@ -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 +--- + +

+ 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: +

+ + diff --git a/organisers/oc.html b/organisers/oc.html new file mode 100644 index 0000000..2cd7971 --- /dev/null +++ b/organisers/oc.html @@ -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%} + +
+
+ {% for chairs in site.data.oc offset:0 limit:half_num_roles_chairs %}{% for role in chairs %} + +

{{ role[1].label }}

+
    + {% for people in role[1]['people'] %} +
  • {{ people.name }}
    {{ people.institution }}
  • + {% endfor %} +
+ {% endfor %}{% endfor %} +
+
+ {% for chairs in site.data.oc offset:half_num_roles_chairs %}{% for role in chairs %} +

{{ role[1].label }}

+
    + {% for people in role[1]['people'] %} +
  • {{ people.name }}
    {{ people.institution }}
  • + {% endfor %} +
+ {% endfor %}{% endfor %} +
+
+ +{% unless forloop.last %} +
+{% endunless %} \ No newline at end of file