{% extends 'partials/base.html.twig' %} {% block body %} {%- set authors = page.children.published -%}
{% include 'partials/breadcrumbs.html.twig' %}
Equipe

{{ page.title }}

{% if page.content %}
{{ page.content|striptags|truncate(240) }}
{% endif %}
{% if authors|length %}
{% for a in authors %} {%- set photo = a.header.photo ? a.media[a.header.photo] : null -%}
{% if photo %}Foto de {{ a.title }}{% else %}{% endif %}

{{ a.title }}

{% if a.header.role %}

{{ a.header.role }}

{% endif %}
{% if photo %}{% else %}{% endif %}

{{ a.title }}

{% if a.header.role %}

{{ a.header.role }}

{% endif %}
{{ a.content|raw }}
{% endfor %}
{% else %}
Nenhum autor cadastrado ainda.
{% endif %}
{% endblock %}