From e215f91facf47f42b151b989a7cc9fd65ee1eb4b Mon Sep 17 00:00:00 2001 From: "Uwe Jandt (DESY)" <uwe.jandt@desy.de> Date: Wed, 5 May 2021 11:56:55 +0200 Subject: [PATCH] exclude co-workers from high-level / management team list --- _data/hifis_team.yml | 2 +- _layouts/team.html | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/_data/hifis_team.yml b/_data/hifis_team.yml index 33e027005..5c67327cc 100644 --- a/_data/hifis_team.yml +++ b/_data/hifis_team.yml @@ -117,6 +117,6 @@ campus: desy position: "HIFIS Backbone Services" associate: false - rank: 2 + rank: 0 associate: false cluster: backbone diff --git a/_layouts/team.html b/_layouts/team.html index ef30a62fb..c9fcc7308 100644 --- a/_layouts/team.html +++ b/_layouts/team.html @@ -29,7 +29,9 @@ It does on purpose NOT include the content of the markdown page. <h1>Team</h1> <div class="team_list"> {%- for person in team_members_core -%} + {%- if person.rank >= 1 -%} {%- include team_card.html person=person -%} + {%- endif -%} {%- endfor -%} </div> </div> -- GitLab