From 60a07d92881da79c9c32154172dc15d6219ff300 Mon Sep 17 00:00:00 2001 From: jscgh Date: Mon, 1 Jun 2026 13:21:31 +1000 Subject: [PATCH 1/2] Add academic panel page --- _data/CONTRIBUTORS.yml | 29 ++++++++- _data/academic.yml | 59 +++++++++++++++++++ _data/sidebars/main.yml | 8 ++- _includes/academic-panel.html | 101 ++++++++++++++++++++++++++++++++ pages/academic_panel.md | 9 +++ pages/community_contributors.md | 9 +++ pages/contributors.md | 11 ++-- 7 files changed, 219 insertions(+), 7 deletions(-) create mode 100644 _data/academic.yml create mode 100644 _includes/academic-panel.html create mode 100644 pages/academic_panel.md create mode 100644 pages/community_contributors.md diff --git a/_data/CONTRIBUTORS.yml b/_data/CONTRIBUTORS.yml index 1dcf30c..f3159c9 100644 --- a/_data/CONTRIBUTORS.yml +++ b/_data/CONTRIBUTORS.yml @@ -173,4 +173,31 @@ Kristina Gagalova: Jennifer Fleming: affiliation: Protein Data Bank in Europe (PDBe) European Bioinformatics Institute (EMBL-EBI) - orcid: https://orcid.org/0000-0003-4016-8740 \ No newline at end of file + orcid: https://orcid.org/0000-0003-4016-8740 + +Peter Czabotar: + affiliation: Walter and Eliza Hall Institute of Medical Research (WEHI) + +Matt Doyle: + affiliation: University of Sydney + +Bostjan Kobe: + affiliation: University of Queensland - IMB + +Emily Furlong: + affiliation: Australian National University + +Debnath Ghosal: + affiliation: Bio21 Institute of Molecular Science and Biotechnology (Bio21) + +Thomas Huber: + affiliation: Australian National University + +Mark Larance: + affiliation: University of Sydney + +Thomas Ve: + affiliation: Griffith University + +Nadia Zatsepin: + affiliation: Swinburne University of Technology diff --git a/_data/academic.yml b/_data/academic.yml new file mode 100644 index 0000000..a867a5f --- /dev/null +++ b/_data/academic.yml @@ -0,0 +1,59 @@ +intro: > + The Academic Advisory Panel brings together Australian researchers with expertise + in structural biology who generously volunteer their time to support and guide + the structural biology computing community. Meeting twice a year, the panel + provides expert advice, sector insight and a valuable connection to the needs + and priorities of researchers across Australia. Their contributions help ensure + the community remains informed, collaborative and responsive to developments in + structural biology and research computing. + +acknowledgement: > + We acknowledge the valuable contributions of past and present members of the + Academic Advisory Panel, including long-serving current members and those who + have completed their service. + +current_members: + - name: Charlie Bond + role: Prof + - name: Brett Collins + role: Prof + - name: Peter Czabotar + role: Prof + - name: Matt Doyle + role: Dr + - name: Rhys Grinter + role: Dr + - name: Johan Gustafsson + role: Dr + - name: Gavin Knott + role: Dr + - name: Bostjan Kobe + role: Prof + - name: Thomas Litfin + role: Dr + - name: Joel Mackay + role: Prof + - name: Katharine Michie + role: A/Prof + - name: Craig Morton + role: Dr + - name: Fiona Whelan + role: Dr + +former_members: + - name: Emily Furlong + role: Dr + - name: Debnath Ghosal + role: Dr + - name: BegoƱa Heras + role: Prof + - name: Thomas Huber + role: Prof + - name: Mark Larance + role: A/Prof + - name: Michael Parker + role: Prof + - name: Thomas Ve + role: A/Prof + - name: Nadia Zatsepin + role: A/Prof diff --git a/_data/sidebars/main.yml b/_data/sidebars/main.yml index 6cf6fb4..9d47b0d 100644 --- a/_data/sidebars/main.yml +++ b/_data/sidebars/main.yml @@ -8,7 +8,11 @@ subitems: - title: Activities url: /activities - title: Contributors - url: /contributors + subitems: + - title: Academic Panel + url: /academic_panel + - title: Community Contributors + url: /community_contributors - title: Community library subitems: - title: General resources @@ -30,4 +34,4 @@ subitems: - title: Events url: /events - title: News - url: /news \ No newline at end of file + url: /news diff --git a/_includes/academic-panel.html b/_includes/academic-panel.html new file mode 100644 index 0000000..b813612 --- /dev/null +++ b/_includes/academic-panel.html @@ -0,0 +1,101 @@ +{%- assign academic = site.data.academic %} + +{%- if academic.intro %} +

{{ academic.intro }}

+{%- endif %} + +{%- if academic.acknowledgement %} +

{{ academic.acknowledgement }}

+{%- endif %} + +{%- if academic.current_members %} +

Current 2026 Members

+
+{%- for contributor in academic.current_members %} + {%- assign contributor_name = contributor.name %} + {%- assign contributor_data = site.data.CONTRIBUTORS[contributor_name] %} +
+
+ {%- assign id = contributor_data.git | default: 'no_github' %} +
+ {%- if contributor_data.image_url %} + {{ contributor_name }} + {%- else %} + {{ contributor_name }} + {%- endif %} + {%- if contributor.role %} + {{ contributor.role }} + {%- endif %} +
+
+

{{ contributor_name }}

+ {%- if contributor_data.affiliation %} +

{{ contributor_data.affiliation }}

+ {%- endif %} +
+ {%- if contributor_data.git or contributor_data.email or contributor_data.orcid %} + + {%- endif %} +
+
+{%- endfor %} +
+{%- endif %} + +{%- if academic.former_members %} +

Former Panel Members

+
+{%- for contributor in academic.former_members %} + {%- assign contributor_name = contributor.name %} + {%- assign contributor_data = site.data.CONTRIBUTORS[contributor_name] %} +
+
+ {%- assign id = contributor_data.git | default: 'no_github' %} +
+ {%- if contributor_data.image_url %} + {{ contributor_name }} + {%- else %} + {{ contributor_name }} + {%- endif %} + {%- if contributor.role %} + {{ contributor.role }} + {%- endif %} +
+
+

{{ contributor_name }}

+ {%- if contributor_data.affiliation %} +

{{ contributor_data.affiliation }}

+ {%- endif %} +
+ {%- if contributor_data.git or contributor_data.email or contributor_data.orcid %} + + {%- endif %} +
+
+{%- endfor %} +
+{%- endif %} diff --git a/pages/academic_panel.md b/pages/academic_panel.md new file mode 100644 index 0000000..eaafca7 --- /dev/null +++ b/pages/academic_panel.md @@ -0,0 +1,9 @@ +--- +title: Academic Panel +page_id: academic_panel +toc: false +--- + +The academic panel helps guide the community direction and roadmap. + +{% include academic-panel.html %} diff --git a/pages/community_contributors.md b/pages/community_contributors.md new file mode 100644 index 0000000..f0f5a1b --- /dev/null +++ b/pages/community_contributors.md @@ -0,0 +1,9 @@ +--- +title: Community Contributors +page_id: community_contributors +toc: false +--- + +The projects included here represent a joint effort by the following people at multiple Australian institutions: + +{% include contributor-tiles-all.html %} diff --git a/pages/contributors.md b/pages/contributors.md index 79dbee2..973a67f 100644 --- a/pages/contributors.md +++ b/pages/contributors.md @@ -1,13 +1,16 @@ --- -title: Community contributors +title: Contributors page_id: contributors toc: false -#type: resources -toc: false redirect_from: /website/contributors/ +tiles: + - title: "Academic Panel" + url: /academic_panel + - title: "Community Contributors" + url: /community_contributors --- -The projects included here represent a joint effort by the following people at multiple Australian institutions: +The Australian Structural Biology Computing website is supported by both an academic panel and a broader community of contributors. {% include contributor-tiles-all.html %} From 70c98da2aada320e458011f460879bee2aaab71e Mon Sep 17 00:00:00 2001 From: jscgh Date: Mon, 1 Jun 2026 14:13:24 +1000 Subject: [PATCH 2/2] Updated ORCIDs --- _data/CONTRIBUTORS.yml | 6 ++++++ _includes/academic-panel.html | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/_data/CONTRIBUTORS.yml b/_data/CONTRIBUTORS.yml index f3159c9..0c6401e 100644 --- a/_data/CONTRIBUTORS.yml +++ b/_data/CONTRIBUTORS.yml @@ -177,27 +177,33 @@ Jennifer Fleming: Peter Czabotar: affiliation: Walter and Eliza Hall Institute of Medical Research (WEHI) + orcid: 0000-0002-2594-496X Matt Doyle: affiliation: University of Sydney Bostjan Kobe: affiliation: University of Queensland - IMB + orcid: 0000-0001-9413-9166 Emily Furlong: affiliation: Australian National University + orcid: 0000-0002-9086-2979 Debnath Ghosal: affiliation: Bio21 Institute of Molecular Science and Biotechnology (Bio21) Thomas Huber: affiliation: Australian National University + orcid: 0000-0002-3680-8699 Mark Larance: affiliation: University of Sydney + orcid: 0000-0002-8579-2267 Thomas Ve: affiliation: Griffith University + orcid: 0000-0002-0113-1905 Nadia Zatsepin: affiliation: Swinburne University of Technology diff --git a/_includes/academic-panel.html b/_includes/academic-panel.html index b813612..c78e17b 100644 --- a/_includes/academic-panel.html +++ b/_includes/academic-panel.html @@ -19,7 +19,7 @@

Current 2026 Members

{%- assign id = contributor_data.git | default: 'no_github' %}
{%- if contributor_data.image_url %} - {{ contributor_name }} + {{ contributor_name }} {%- else %} {{ contributor_name }} {%- endif %} @@ -65,7 +65,7 @@

Former Panel Members

{%- assign id = contributor_data.git | default: 'no_github' %}
{%- if contributor_data.image_url %} - {{ contributor_name }} + {{ contributor_name }} {%- else %} {{ contributor_name }} {%- endif %}