Skip to content

Latest commit

 

History

History
73 lines (64 loc) · 2.57 KB

File metadata and controls

73 lines (64 loc) · 2.57 KB
layout page
title More about TechNoon
permalink /more/

Who We Are

{% if site.data.people.instructors %}

<div class="profile-pic-gallary">
    <div class="instructor-list">
        {% for ins in site.data.people.instructors %}
        <div class="image--cover-container">
            <div class="profile-pic">
                <img src="{{ins.profile_pic | prepend: site.baseurl }}" class="image--cover">
                {% if ins.webpage %}
                <p><a href="{{ ins.webpage }}">{{ins.name}}</a></p>
                {% else %}
                <p>{{ins.name}}</p>
                {% endif %}
            </div>
            <p class="bio">{{ins.bio}}</p>
        </div>
        {% endfor %}
    </div>
</div>
{% endif %}

{% if site.data.people.teaching_assistants %}

Teaching Assistants

{% for ta in site.data.people.teaching_assistants %}
{% if ta.webpage %}

{{ta.name}}

{% else %}

{{ta.name}}

{% endif %}
{% endfor %}
{% endif %}

Resources