{% comment %} Process YML config data ================================================================================ {% endcomment %} {% comment %} Set collection data -------------------------------------------------------------------------------- {% endcomment %} {% assign collection_name = "people" %} {% comment %} Set grid data -------------------------------------------------------------------------------- {% endcomment %} {% assign grid_title = collection_name | capitalize %} {% assign grid_tagline = "meet us" %} {% assign card_translate_description = "notranslate" %} {% comment %} Collect collection documents -------------------------------------------------------------------------------- {% endcomment %} {% for collection in site.collections %} {% if collection.label contains collection_name %} {% assign articles = collection.docs %} {% break %} {% endif %} {% endfor %} {% comment %} Main -------------------------------------------------------------------------------- {% endcomment %}

{{grid_title}}

{{grid_tagline}}

{% for article in articles %}
{{article.person.name | escape}}

{{article.person.name}}

{{article.person.role}}

{% comment %} social media (links) ---------------------------------------------------------------------- {% endcomment %} {% if article.social_media.enabled %} {% endif %}
{% endfor %}