Onboarding
  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! 
  {% assign sorted_mentors = site.data.mentors | sort: 'name' %}
  {% for mentor in sorted_mentors %}
  
    
    
      
        {{ mentor.name }}
        Vanus: {{ mentor.age }}
        {% if mentor.specialty != null %}
        
Eriala: {{ mentor.specialty }}
        {% endif %}
        {% if mentor.term != null %}
        
Kursus: {{ mentor.term }}
        {% endif %}
        
Tiimid:
        
          {% for team in mentor.teams %}
          - {{ team }}
 
          {% endfor %}
        
        {% if mentor.contactMethods != null %}
        
Kontaktid:
        {% 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 %}