Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 1.33 KB

team.md

File metadata and controls

36 lines (33 loc) · 1.33 KB
layout permalink title id
default
/committee/
Project committee
team

{% assign rows = site.team.size | divided_by: 2.0 | ceil %} {% for i in (1..rows) %} {% assign offset = forloop.index0 | times: 2 %} {% assign sorted = site.team | sort:"surname" %}

{% for author in sorted limit:2 offset:offset %}
{% if author.image %} {{page.title}}'s profile image {% endif %}
{{author.title}}
{% if author.job-title %}
{{ author.job-title}}
{% endif %}
            <p class="card-text">{{ author.content | strip_html | truncatewords: 20}}</p>
            {% if author.institution %}
            <p><span class="chip"><i class="chip-icon"><i class="fas fa-sitemap"></i></i>{{ author.institution}}</span></p>
            {% endif %}
            <a href="{{ author.url }}" class="btn btn-dark stretched-link">Read full bio</a>
          </div>
      </div>
</div>
{% endfor %}
{% endfor %}