diff options
author | Adam T. Carpenter <atc@53hor.net> | 2024-09-09 22:28:33 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2024-09-09 22:28:33 -0400 |
commit | 0213fd2dcd09ca4b1252cdc45415a765a887d679 (patch) | |
tree | 975beafb05ac296d87167e40c724cac0f9a9dc86 /templates/about/figure.html | |
parent | f2bd378e1a8cdfa7d1520b3734a748dd1cd9de25 (diff) | |
download | carpentertutoring-0213fd2dcd09ca4b1252cdc45415a765a887d679.tar.xz carpentertutoring-0213fd2dcd09ca4b1252cdc45415a765a887d679.zip |
feat: teams and blurbs but lots of todos
Diffstat (limited to 'templates/about/figure.html')
-rw-r--r-- | templates/about/figure.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/about/figure.html b/templates/about/figure.html new file mode 100644 index 0000000..2b8e308 --- /dev/null +++ b/templates/about/figure.html @@ -0,0 +1,8 @@ +<figure class="shadowy"> + <picture> + <source srcset="/team/{{ tutor.id() }}.webp" type="image/webp" /> + <source srcset="/team/{{ tutor.id() }}.png" type="image/png" /> + <img alt="{{ tutor.display_name() }}" src="/team/{{ tutor.id() }}.png" /> + </picture> + <figcaption>{{ tutor.display_name() }}</figcaption> +</figure> |