1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-11 22:49:08 +00:00

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
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.
- 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
title: Backoffice
joined: January 2020
@ -62,22 +52,20 @@ members:
- icon: github
external_url: https://github.com/ppacher
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
title: Senior Developer
joined: July 2022
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.
externals:
- name: Pranav
title: Freelancer
joined: August 2021
previous:
- name: Luke
title: Designer
joined: October 2019 - October 2022
handles:
- icon: earth
external_url: https://p2anav.net/
- icon: twitter
external_url: https://twitter.com/LukeSeers/
- icon: github
external_url: https://github.com/safeadblocker/
- icon: reddit
external_url: https://reddit.com/u/safeadblocker/
external_url: https://github.com/lukeseers
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 class="horizontal-line max-w-5xl mx-auto"></div>
<div class="space-y-40">
{% for external in site.data.team.externals %}
<div class="team-member" id="{{ external.name | slugify }}">
<div class="header-three-container">
<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-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 class="team-member-left-scoial">
{% for handle in external.handles %}
<a href="{{ handle.external_url }}" target="_blank"><i class="icon-{{ handle.icon }} text-md"></i></a>
{% for handle in prev.handles %}
<a href="{{ handle.prev_url }}" target="_blank"><i class="icon-{{ handle.icon }} text-md"></i></a>
{% endfor %}
</div>
</div>
<div class="team-member-right">
<span class="team-member-right-postion">
{{ external.title }}
{{ prev.title }}
</span>
<span class="team-member-right-name">
{{ external.name }}
{{ prev.name }}
</span>
<span class="team-member-right-date">
Joined {{ external.joined }}
{{ prev.joined }}
</span>
<p class="team-member-right-desc">
{{ external.description }}
{{ prev.description }}
</p>
</div>
</div>