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/team.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/team.html')
-rw-r--r-- | templates/about/team.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/about/team.html b/templates/about/team.html new file mode 100644 index 0000000..b1f0588 --- /dev/null +++ b/templates/about/team.html @@ -0,0 +1,15 @@ +{% let flip = true %} + +{% for tutor in tutors %} +<section class="quiet flexible"> + {% if flip == true %} + {% include "blurb.html" %} + {% include "figure.html" %} + {% else %} + {% include "figure.html" %} + {% include "blurb.html" %} + {% endif %} +</section> + +<section></section> +{% endfor %} |