blob: c6cee5120da1c1d4cc0ec0300a300d7f799d08a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
<figure class="shadowy">
<picture>
<source srcset="<?php printf('/about/team/%s/%s.webp', $tutor, $tutor) ?>" type="image/webp" />
<source srcset="<?php printf('/about/team/%s/%s.png', $tutor, $tutor) ?>" type="image/png" />
<img alt="<?php include("./team/$tutor/name.php") ?>" src="<?php printf('/about/team/%s/%s.png', $tutor, $tutor) ?>" />
</picture>
<figcaption><?php include("./team/$tutor/name.php") ?></figcaption>
</figure>
|