{% for tutor in tutors %}
<section class="quiet flexible">
	{% if loop.index0 % 2 == 0 %}
		{% include "blurb.html" %}
		{% include "figure.html" %}
	{% else %}
		{% include "figure.html" %}
		{% include "blurb.html" %}
	{% endif %}
</section>

<section></section>
{% endfor %}