{% extends "pages/content_page.html" %} {% load wagtailcore_tags %} {% block page-context-id %}contributors{% endblock %} {% block page_body %} {# project contributors #}

Project Team

{% for block in page.specific.contributors %} {% include 'pages/snippets/profile.html' with person=block.value %} {% endfor %}
{# advisory board members #}

Advisory Board

{% for block in page.specific.board %} {% include 'pages/snippets/profile.html' with person=block.value %} {% endfor %}
{# regular body content, as for any other content page #} {{ block.super }} {% endblock %}