Mentorid
  Siin on meie mentorid. Kui leiad kellegi, kellega huvid kattuvad, võta temaga julgelt ühendust!
  {% 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 %}
        
          {% for contactMethod in mentor.contactMethods %}
          {% if contactMethod.name == 'Telefon' %}
          - 
            Telefon: {{ contactMethod.value }}
          
 
          {% endif %}
          {% if contactMethod.name == 'E-mail' %}
          - 
            E-mail: {{ contactMethod.value }}
          
 
          {% endif %}
          {% if contactMethod.name == 'Messenger' %}
          - 
            Messenger: {{ contactMethod.value }}
          
 
          {% endif %}
          {% if contactMethod.name == 'Telegram' %}
          - 
            Telegram: {{ contactMethod.value }}
          
 
          {% endif %}
          {% if contactMethod.name == 'Facebook' %}
          
          - 
            Facebook
          
 
          {% endif %}
          {% if contactMethod.name != 'Telefon' and contactMethod.name != 'E-mail' and contactMethod.name != 'Messenger'
          and contactMethod.name != 'Facebook' and contactMethod.name != 'Telegram' %}
          - 
            {{ contactMethod.name }}: {{ contactMethod.value }}
          
 
          {% endif %}
          {% endfor %}
        
       
      
        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 %}