mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-09-22 18:25:35 +00:00
- Shorten Promise's first name
- Add +1 to all mentors' ages (even if their birthday is in a few days) and university terms (if they haven't graduated yet) - Remove previous mentors pages content, and add a clarifying message about who to contact instead - Update helpdesk contact info in /helpdesk and /contact pages by changing the messenger link and facebook iframe to point to the main lapikud facebook page - Switch out the link to the recruitment form for the new one - Update text and code in /student and /index pages
This commit is contained in:
104
mentors.html
104
mentors.html
@@ -5,103 +5,11 @@ title: Mentorid - Lapikud
|
||||
<div class="page" id="mentors">
|
||||
<h1>Mentorid</h1>
|
||||
|
||||
<h3>Siin on meie 2025. aasta mentorid. Nemad on õiged inimesed, kelle poole pöörduda küsimuste tekkimisel seoses liitumise või Lapikutega üldiselt! </h3>
|
||||
|
||||
{% for mentor in site.data.mentors %}
|
||||
|
||||
<div class="mentor">
|
||||
<div class="photo-container">
|
||||
<img src="{{ '/assets/mentors-images/optimised/' | append: mentor.photo | relative_url }}" alt="{{ mentor.name }}">
|
||||
</div>
|
||||
<div class="description">
|
||||
<div class="general">
|
||||
<h1>{{ mentor.name }}</h1>
|
||||
<p>Vanus: {{ mentor.age }}</p>
|
||||
|
||||
{% if mentor.speciality != null %}
|
||||
<p>Eriala: {{ mentor.speciality }}</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>Milliseid inimesi ootan oma piksliteks?</h4>
|
||||
{% if mentor.description.first %}
|
||||
{% for descriptionLine in mentor.description %}
|
||||
{% if descriptionLine == '' %}
|
||||
<br>
|
||||
{% else %}
|
||||
<p>{{ descriptionLine }}</p>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
<p>{{ mentor.description }}</p>
|
||||
{% endif %}
|
||||
<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 %}
|
||||
<h3>2026/27 Õppeaasta mentorlussüsteem on uuendamisel!</h3>
|
||||
<p>
|
||||
Seniks võta küsimuste korral ühendust esimehega.</br>
|
||||
Email: <a href="mailto:kerdo@lapikud.ee">kerdo@lapikud.ee</a></br>
|
||||
Discord: krooles
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user