- {% if block.value.photo %}
- {% image block.value.photo width-400 as team_photo %}
-
-
{{ block.value.name }}
-
{{ block.value.position }}
- {% if block.value.bio %}
-
{{ block.value.bio|richtext }}
+
+ {% for block in self.team_members %}
+ {% if block.block_type == 'team_member' %}
+
+
+ {% if block.value.photo %}
+ {% image block.value.photo fill-400x400-c100 as team_photo %}
+

{% endif %}
-
-
-
- {% endif %}
- {% endfor %}
+ {% endif %}
+ {% endfor %}
+
-
- {% for block in self.additional_content %}
- {% if block.block_type == 'heading' %}
-
{{ block.value }}
- {% elif block.block_type == 'paragraph' %}
- {{ block.value|richtext }}
- {% elif block.block_type == 'image' %}
- {% image block.value width-800 as content_image %}
-

- {% elif block.block_type == 'quote' %}
-
-
- {{ block.value.quote }}
-
- {% if block.value.attribution %}
-
- {% endif %}
-
- {% endif %}
- {% endfor %}
+
+
+
+ {% for block in self.additional_content %}
+ {% if block.block_type == 'heading' %}
+
{{ block.value }}
+ {% elif block.block_type == 'paragraph' %}
+
+ {{ block.value|richtext }}
+
+ {% elif block.block_type == 'image' %}
+ {% image block.value width-800 as content_image %}
+
+

+
+ {% elif block.block_type == 'quote' %}
+
+
+ {{ block.value.quote }}
+ {% if block.value.attribution %}
+
+ {% endif %}
+
+
+ {% endif %}
+ {% endfor %}
+
{% endif %}
+
{% endblock content %}