Mentorid
  Siin on meie 2024. aasta mentorid. Nemad on õiged inimesed, kelle poole pöörduda küsimuste tekkimisel seoses liitumise või Lapikutega üldiselt! 
  {% for mentor in site.data.mentors %}
  
    
    
      
        {{ mentor.name }}
        Vanus: {{ mentor.age }}
        {% if mentor.speciality != null %}
        
Eriala: {{ mentor.speciality }}
        {% endif %}
        {% if mentor.term != null %}
        
Kursus: {{ mentor.term }}
        {% endif %}
        
Tiimid:
        
          {% for team in mentor.teams %}
          - {{ team }}
 
          {% endfor %}
        
        {% if mentor.contactMethods != null %}
        
Kontaktid:
        {% endif %}
        
       
      
        Milliseid inimesi ootan oma piksliteks?
        {% if mentor.description.first %}
        {% for descriptionLine in mentor.description %}
        {% if descriptionLine == '' %}
        
        {% else %}
        
{{ descriptionLine }}
        {% endif %}
        {% endfor %}
        {% else %}
        
{{ mentor.description }}
        {% endif %}
        
Milline Lapik olen ise?
        {% if mentor.activities.first %}
        {% for activitiesLine in mentor.activities %}
        {% if activitiesLine == '' %}
        
        {% else %}
        
{{ activitiesLine }}
        {% endif %}
        {% endfor %}
        {% else %}
        
{{ mentor.activities }}
        {% endif %}
      
 
     
   
  {% endfor %}