blob: 2857efed3bea66fe6ca23731f09b469089472e1e (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | {% 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 %}
 |