| layout | title | description |
|---|---|---|
default |
People |
Workshop folks |
{% assign mentors = site.data.people | where:'role', 'mentor' | sort: "nick" %} {% assign participants = site.data.people | where:'role', 'participant' | sort: "nick" %} {% assign friends = site.data.people | where:'role', 'other' | sort: "nick" %} {% assign shuffle = site.data.people | sample: 100 %}
{:width="100%"}
{% for person in participants %}
{% include person.html %}
{% endfor %}
{:width="100%"}
{% for person in mentors %}
{% include person.html %}
{% endfor %}
{:width="100%"}
{% for person in friends %}
{% include person.html %}
{% endfor %}
