Files
lapikud.github.io/mentors.html
TankerElite 6b7025f9bd 2022 aasta Mentorid to Onboarding update (#67)
* Update Mentors to 2022 onboarding

remove "Milliseid piksleid tahaksid endale", update text

* Create mentors_old_dot_yml.txt

* Add sannu and koks onboarding

* fix mentors.yml images

* Add Resize for windows

Change target folders in resize.bat to point to correct folders (need entire path, starting from c: or equiv.)

* Delete assets/mentors-images/original directory

* Delete assets/mentors-images/optimised directory

* new images

* mentors.html rewrite

* Delete mentors_old_dot_yml.txt

* Delete resize.bat

* Delete scale.bat
2022-08-21 19:29:40 +03:00

93 lines
2.7 KiB
HTML

---
layout: default
title: Mentorid - Lapikud
---
<div class="page" id="mentors">
<h1>Onboarding</h1>
<h3>Siin on meie 2022 aasta Onboarding-tiimi liikmed. Nemad on õiged inimesed, kelle poole pöörduda küsimuste tekkimisel seoses liitumise või Lapikutega üldiselt! </h3>
{% assign sorted_mentors = site.data.mentors | sort: 'name' %}
{% for mentor in sorted_mentors %}
<div class="mentor">
<div class="photo-container">
<img src="{{ "/assets/mentors-images/optimised/" | append: mentor.photo }}" alt="{{ mentor.name }}">
</div>
<div class="description">
<div class="general">
<h1>{{ mentor.name }}</h1>
<p>Vanus: {{ mentor.age }}</p>
{% if mentor.specialty != null %}
<p>Eriala: {{ mentor.specialty }}</p>
{% endif %}
{% if mentor.term != null %}
<p>Kursus: {{ mentor.term }}</p>
{% endif %}
<p>Tiimid:</p>
<ul>
{% for team in mentor.teams %}
<li>{{ team }}</li>
{% endfor %}
</ul>
{% if mentor.contactMethods != null %}
<p>Kontaktid:</p>
{% endif %}
<ul>
{% for contactMethod in mentor.contactMethods %}
{% if contactMethod.name == 'Telefon' %}
<li>
Telefon: <a href="tel:{{ contactMethod.value }}">{{ contactMethod.value }}</a>
</li>
{% elsif contactMethod.name == 'E-mail' %}
<li>
E-mail: <a href="mailto: {{ contactMethod.value }}">{{ contactMethod.value }}</a>
</li>
{% elsif contactMethod.name == 'Messenger' %}
<li>
Messenger: <a href="{{ contactMethod.value }}">{{ contactMethod.value }}</a>
</li>
{% elsif contactMethod.name == 'Telegram' %}
<li>
Telegram: <a href="{{ contactMethod.value }}">{{ contactMethod.value }}</a>
</li>
{% elsif contactMethod.name == 'Facebook' %}
<!--<p>Facebook <a href="{{ contactMethod.value }}">{{ contactMethod.value }}</a></p>-->
<li>
<a href="{{ contactMethod.value }}">Facebook</a>
</li>
{% else %}
<li>
{{ contactMethod.name }}: {{ contactMethod.value }}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="varia">
<h4>Milline Lapik olen ise?</h4>
{% if mentor.activities.first %}
{% for activitiesLine in mentor.activities %}
{% if activitiesLine == '' %}
<br>
{% else %}
<p>{{ activitiesLine }}</p>
{% endif %}
{% endfor %}
{% else %}
<p>{{ mentor.activities }}</p>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>