{{/* Copyright (c) 2023 Eclipse Foundation, Inc. This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0 which is available at http://www.eclipse.org/legal/epl-2.0. Contributors: Olivier Goulet SPDX-License-Identifier: EPL-2.0 */}} {{ $type := .Get "type" }} {{ $team_members := index .Site.Data.security.team $type }} {{ $data := .Site.Data.security.team }}
{{ if eq (len $team_members) 0 }}

No {{ $type }} members to display at this time.

{{ else }} {{ range $team_members }} {{ $eclipse_username := "" }} {{ range .links }} {{ if eq .type "eclipse" }} {{ $eclipse_username = .text }} {{ end }} {{ end }}

{{ .name }}

{{ range .links }} {{ $type := index $data.link_types .type }}
{{ .text }} {{ $type.postfix }}
{{ end }}
{{ end }} {{ end }}