1+ < section id ="staff " style ="padding: 15vh 7vw 5vh 7vw; color: white; background: linear-gradient(195deg, rgb(30 2 2 / 97%), rgb(0, 0, 0)), url(/img/featureBG.webp); background-position: center center; background-size: cover; ">
2+ < div class ="row " style ="margin-bottom: 2vh; ">
3+ < div class ="col-12 ">
4+ < h1 style ="font-size: 5vh; text-align: left; "> < b > Staff</ b > de SaltaDev</ h1 >
5+ < p style ="width: 100%; margin-bottom: 3vh; margin-top: 2vh; opacity: 0.7; font-size: 2vh; text-align: left; "> Conocé a quienes hacen posible la comunidad</ p >
6+ </ div >
7+ </ div >
8+
9+ < div class ="row ">
10+ {% for member in site.staff %}
11+ < div class ="col-12 col-md-6 col-lg-4 col-xl-3 " style ="margin-bottom: 3vh; ">
12+ < div class ="featureCard " style ="padding: 3vh 2vw; border: 0.1vh solid var(--primaryColor); border-radius: 1vh 0vh 1vh 0vh; background: linear-gradient(35deg, rgba(78, 55, 55, 0.068), black); display: flex; flex-direction: column; justify-content: center; align-items: center; transition-duration: 0.3s; min-height: 30vh; text-align: center; width: 100%; ">
13+ < div class ="featureCardContainer " style ="width: 100%; display: flex; flex-direction: column; align-items: center; ">
14+ {% if member.photo %}
15+ < div class ="iconContainer " style ="width: fit-content; font-size: 3vh; color: var(--primaryColor); margin-bottom: 2vh; ">
16+ < img src ="{{ member.photo }} " alt ="{{ member.name }} " style ="width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primaryColor); ">
17+ </ div >
18+ {% else %}
19+ < div class ="iconContainer " style ="width: fit-content; font-size: 3vh; color: var(--primaryColor); margin-bottom: 2vh; ">
20+ < img src ="/img/staff/default.jpg " alt ="{{ member.name }} " style ="width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primaryColor); ">
21+ </ div >
22+ {% endif %}
23+
24+ < h2 style ="font-size: 2.2vh; color: white; margin-bottom: 1vh; "> {{ member.name }}</ h2 >
25+
26+ {% if member.role %}
27+ < p style ="color: var(--primaryColor); font-weight: bold; margin-bottom: 1vh; font-size: 1.6vh; "> {{ member.role }}</ p >
28+ {% endif %}
29+
30+ {% if member.description %}
31+ < p style ="color: white; opacity: 0.8; font-size: 1.4vh; margin-bottom: 2vh; line-height: 1.4; padding: 0 1vw; "> {{ member.description }}</ p >
32+ {% endif %}
33+
34+ < div class ="socialLinks " style ="display: flex; justify-content: center; gap: 1.5vh; margin-top: auto; ">
35+ {% if member.twitter %}
36+ < a href ="{{ member.twitter }} " target ="_blank " title ="Twitter " style ="color: var(--primaryColor); font-size: 2.5vh; transition-duration: 0.3s; ">
37+ < i class ="fa-brands fa-x-twitter "> </ i >
38+ </ a >
39+ {% endif %}
40+ {% if member.linkedin %}
41+ < a href ="{{ member.linkedin }} " target ="_blank " title ="LinkedIn " style ="color: var(--primaryColor); font-size: 2.5vh; transition-duration: 0.3s; ">
42+ < i class ="fa-brands fa-linkedin "> </ i >
43+ </ a >
44+ {% endif %}
45+ {% if member.github %}
46+ < a href ="{{ member.github }} " target ="_blank " title ="GitHub " style ="color: var(--primaryColor); font-size: 2.5vh; transition-duration: 0.3s; ">
47+ < i class ="fa-brands fa-github "> </ i >
48+ </ a >
49+ {% endif %}
50+ </ div >
51+ </ div >
52+ </ div >
53+ </ div >
54+ {% endfor %}
55+ </ div >
56+ </ section >
0 commit comments