Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 1.3 KB

team.md

File metadata and controls

33 lines (29 loc) · 1.3 KB
layout permalink title id
default
/team/
Meet the team
team

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

{% for author in site.team limit:2 offset:offset %}
{{page.title}}'s profile image
{{author.title}}
{% if author.job-title %}
{{ author.job-title}}
{% endif %}
            <p class="card-text">{{ author.content | strip_html | truncatewords: 20}}</p>

            <p><span class="chip"><i class="chip-icon"><i class="fas fa-sitemap"></i></i><span class="text-truncate shorten-words">{{ author.institution}}</span></span></p>

            <a href="{{ site.baseurl }}{{ author.url }}" class="btn btn-dark">Read full bio</a>
          </div>
      </div>
</div>
{% endfor %}
{% endfor %}