Update team page

This commit is contained in:
davegson 2022-11-04 10:56:37 +01:00
parent ce727000ad
commit b7687c613b
2 changed files with 21 additions and 30 deletions

View file

@ -40,16 +40,6 @@ members:
joined: September 2019 joined: September 2019
description: > description: >
Alex is heavily involved in building the backends of the major web platforms of Safing, including the SPN user platform and payment system - a core to our business. As the first employee he also helped shaping the company. Alex is heavily involved in building the backends of the major web platforms of Safing, including the SPN user platform and payment system - a core to our business. As the first employee he also helped shaping the company.
- name: Luke
title: Designer
joined: October 2019
handles:
- icon: twitter
external_url: https://twitter.com/LukeSeers/
- icon: github
external_url: https://github.com/lukeseers
description: >
Luke's uncompromising passion for privacy led us to hire him directly from within the community. With his pragmatism and determination towards easy design he has already and continues to make a big impact.
- name: Tabitha - name: Tabitha
title: Backoffice title: Backoffice
joined: January 2020 joined: January 2020
@ -62,22 +52,20 @@ members:
- icon: github - icon: github
external_url: https://github.com/ppacher external_url: https://github.com/ppacher
description: > description: >
With his wide experience, ranging from IT-security and pen-testing to driver development to server management, Patrick rapidly became an invaluable part of the team. With his passion for Go-lang he is primarily advancing the Portmaster. With his wide experience, ranging from IT-security and pen-testing to driver development to server management, Patrick rapidly became an invaluable part of the team. With his passion for Go-lang he is primarily advancing Portmaster.
- name: Vladimir - name: Vladimir
title: Senior Developer title: Senior Developer
joined: July 2022 joined: July 2022
description: > description: >
With his broad skillset, from app development to low level programming, Vladimir quickly became a valuable part of the team. Loving both privacy and challenges, he is unafraid to tackle the tricky areas of Portmaster in order to push it forward. With his broad skillset, from app development to low level programming, Vladimir quickly became a valuable part of the team. Loving both privacy and challenges, he is unafraid to tackle the tricky areas of Portmaster in order to push it forward.
externals: previous:
- name: Pranav - name: Luke
title: Freelancer title: Designer
joined: August 2021 joined: October 2019 - October 2022
handles: handles:
- icon: earth - icon: twitter
external_url: https://p2anav.net/ external_url: https://twitter.com/LukeSeers/
- icon: github - icon: github
external_url: https://github.com/safeadblocker/ external_url: https://github.com/lukeseers
- icon: reddit
external_url: https://reddit.com/u/safeadblocker/
description: > description: >
Pranav is a minimalist who enjoys writing about privacy, web development and philosophy. He joined forces with Safing to tackle the "Portmaster vs X" comparison blog posts, where he is the main contributor. Luke's uncompromising passion for privacy led us to hire him directly from within the community. During his time with Safing, his pragmatism and determination towards easy design shaped the company. Luke had a great impact.

View file

@ -41,30 +41,33 @@ layout: page
</div> </div>
<div class="horizontal-line max-w-5xl mx-auto"></div> <div class="horizontal-line max-w-5xl mx-auto"></div>
<div class="space-y-40"> <div class="space-y-40">
{% for external in site.data.team.externals %} <div class="header-three-container">
<div class="team-member" id="{{ external.name | slugify }}"> <h2 class="text-5xl">Past Members</h2>
</div>
{% for prev in site.data.team.previous %}
<div class="team-member" id="{{ prev.name | slugify }}">
<div class="team-member-left"> <div class="team-member-left">
<div class="team-member-left-profile relative"> <div class="team-member-left-profile relative">
<img src="{{ site.img_url }}profiles/{{ external.name | slugify }}.png" alt="{{ external.name }}"> <img src="{{ site.img_url }}profiles/{{ prev.name | slugify }}.png" alt="{{ prev.name }}">
</div> </div>
<div class="team-member-left-scoial"> <div class="team-member-left-scoial">
{% for handle in external.handles %} {% for handle in prev.handles %}
<a href="{{ handle.external_url }}" target="_blank"><i class="icon-{{ handle.icon }} text-md"></i></a> <a href="{{ handle.prev_url }}" target="_blank"><i class="icon-{{ handle.icon }} text-md"></i></a>
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
<div class="team-member-right"> <div class="team-member-right">
<span class="team-member-right-postion"> <span class="team-member-right-postion">
{{ external.title }} {{ prev.title }}
</span> </span>
<span class="team-member-right-name"> <span class="team-member-right-name">
{{ external.name }} {{ prev.name }}
</span> </span>
<span class="team-member-right-date"> <span class="team-member-right-date">
Joined {{ external.joined }} {{ prev.joined }}
</span> </span>
<p class="team-member-right-desc"> <p class="team-member-right-desc">
{{ external.description }} {{ prev.description }}
</p> </p>
</div> </div>
</div> </div>