--- title: Members --- <h1>{{ page.title }}</h1> <p><strong>Disclaimer:</strong> The pictures displayed on this page are protected by copyright. All rights are reserved by the respective owners or copyright holders. This excludes the avatars, which were created by <a href="https://www.openpeeps.com">Open Peeps</a> under a CC0 licence. Please note avatars are chosen randomly.</p> <div class="container"> {% assign sorted_members = site.data.members | sort: 'surname' %} {% for member in sorted_members %} <div class="member-box"> <div class="profile-picture"> {% if member.pic %} <img src='{{ member.pic | relative_url }}' alt="Profile Picture" class="protected"> {% else %} {% assign availableOPAvatars = "32, 46, 48, 68, 79, 82, 94, 99" | split: ", " %} {% assign RandomAvatar = availableOPAvatars | sample %} <img src='{{ "/assets/images/open-peep-" | append: RandomAvatar | append: ".png" | relative_url }}' alt="Profile Picture"> {% endif %} </div> <p><strong>{{ member.first-name }} {{ member.surname }}</strong></p> <p>{{ member.facility }}</p> </div> {% endfor %} </div>