summaryrefslogtreecommitdiff
path: root/templates/about/figure.html
blob: 4a4c36546bb4bc6592dd7ec36880c37014cf8038 (plain) (blame)
1
2
3
4
5
6
7
8
<figure class="shadowy">
	<picture>
		<source srcset="/team/{{ tutor.get_id() }}/{{ tutor.get_id() }}.webp" type="image/webp" />
		<source srcset="/team/{{ tutor.get_id() }}/{{ tutor.get_id() }}.png" type="image/png" />
		<img alt="{{ tutor.get_name() }}" src="/team/{{ tutor.get_id() }}/{{ tutor.get_id() }}.png" />
	</picture>
	<figcaption>{{ tutor.get_name() }}</figcaption>
</figure>