Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 1.24 KB

team.md

File metadata and controls

34 lines (30 loc) · 1.24 KB
layout permalink title id
coffins
/team/
Meet the coffins project team
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:"order" %} {% for author in sorted 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="badge bg-dark p-2 mb-2">{{ author.institution}}</span></p>

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