{% extends "_base.html" %} {% block title %}{{ cohort.name }}{% endblock %} {% block styles %} {% endblock %} {% block body %}
{% if page.languages|length > 1 %}
{% endif %}
{{ page.content }}

{{ cohort.contact_label }}

    {% for line in cohort.contact %} {% if line.is_phone %}
  • {{ line.text }}
  • {% elif line.is_mail %} {% else %}
  • {{ line.text }}
  • {% endif %} {% endfor %}

{% for page in pages[1:] %}

{{ page.title }}

{{ page.description }}

{% endfor %}

{% for column in cohort.contributors|batch(6, ' ') %}
{% for contributor in column %}
{% if contributor != ' ' %} {% else %}   {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}