diff options
Diffstat (limited to 'templates/about/figure.html')
-rw-r--r-- | templates/about/figure.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/about/figure.html b/templates/about/figure.html new file mode 100644 index 0000000..168aa4e --- /dev/null +++ b/templates/about/figure.html @@ -0,0 +1,7 @@ +<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> +</figure> |