From 37b6c927620cb68e01345d29daca960faeb80cb9 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sun, 18 May 2025 10:44:04 -0400 Subject: chore: rename jinja templates Also wrap style block so auto formatter doesn't pick it up and wreck CSS. --- templates/about/blurb.html | 3 -- templates/about/blurb.html.j2 | 3 ++ templates/about/figure.html | 7 ----- templates/about/figure.html.j2 | 7 +++++ templates/about/index.html | 69 ------------------------------------------ templates/about/index.html.j2 | 69 ++++++++++++++++++++++++++++++++++++++++++ templates/about/team.html | 11 ------- templates/about/team.html.j2 | 11 +++++++ 8 files changed, 90 insertions(+), 90 deletions(-) delete mode 100644 templates/about/blurb.html create mode 100644 templates/about/blurb.html.j2 delete mode 100644 templates/about/figure.html create mode 100644 templates/about/figure.html.j2 delete mode 100644 templates/about/index.html create mode 100644 templates/about/index.html.j2 delete mode 100644 templates/about/team.html create mode 100644 templates/about/team.html.j2 (limited to 'templates/about') diff --git a/templates/about/blurb.html b/templates/about/blurb.html deleted file mode 100644 index 4389d47..0000000 --- a/templates/about/blurb.html +++ /dev/null @@ -1,3 +0,0 @@ -
- {{ tutor.get_blurb()|markdown }} -
diff --git a/templates/about/blurb.html.j2 b/templates/about/blurb.html.j2 new file mode 100644 index 0000000..4389d47 --- /dev/null +++ b/templates/about/blurb.html.j2 @@ -0,0 +1,3 @@ +
+ {{ tutor.get_blurb()|markdown }} +
diff --git a/templates/about/figure.html b/templates/about/figure.html deleted file mode 100644 index 168aa4e..0000000 --- a/templates/about/figure.html +++ /dev/null @@ -1,7 +0,0 @@ -
- - - - {{ tutor.get_name() }} - -
diff --git a/templates/about/figure.html.j2 b/templates/about/figure.html.j2 new file mode 100644 index 0000000..168aa4e --- /dev/null +++ b/templates/about/figure.html.j2 @@ -0,0 +1,7 @@ +
+ + + + {{ tutor.get_name() }} + +
diff --git a/templates/about/index.html b/templates/about/index.html deleted file mode 100644 index fcbc286..0000000 --- a/templates/about/index.html +++ /dev/null @@ -1,69 +0,0 @@ -{% extends "base.html" %} - -{% block main %} - - -
-

-

- There are many pathways to success. I started Carpenter Tutoring for - those seeking a little help finding their way. -

-

-
- -
-
- - - - Amy Carpenter - -
Amy Carpenter, M.Ed.
-
- -
-

- I received my B.A. from The College of William and Mary in 2018 and received - my M.Ed. from W&M in 2020. As an undergraduate, I worked and was trained - as a tutor at W&M's peer tutoring center, the TutorZone. During - this period, I conducted over 150 one-on-one appointments with W&M - students in 26 different content areas. I earned lifetime Advanced Tutor - Certification, the highest level W&M can grant, through the College - Reading and Learning Association, and I was trained as a time management - consultant. I took on leadership roles within the TutorZone until I was - working alongside its director. As a graduate student, I became one of the - Graduate Assistants helping oversee the TutorZone as well as an academic - coach to students with high need for academic support. -

- -

- I loved getting to work with the TutorZone tutors, but I realized that - I missed being the tutor. There's just nothing like watching the light bulb - of understanding go off or seeing students who had struggled with material - master it! With that realization, I decided to dedicate my life to my - passion -- helping students of all ages learn, succeed, and believe in - themselves. -

- -

- My instructional approach focuses on meeting students where they are and - supporting them through any hesitations or discomforts from which academic - difficulties may arise. Whether your student only has to brush up on a few - concepts or is resistant to completing coursework, I will come to each - session with patience, understanding, and just the right amount of - discipline. I truly believe that excellent educational relationships begin - with mutual respect, and I work to build meaningful relationships with all - of my clients. -

- -

Thank you for considering Carpenter Tutoring.

-
- -
- -{% include "team.html" %} - -{% endblock %} \ No newline at end of file diff --git a/templates/about/index.html.j2 b/templates/about/index.html.j2 new file mode 100644 index 0000000..71891ee --- /dev/null +++ b/templates/about/index.html.j2 @@ -0,0 +1,69 @@ +{% extends "base.html.j2" %} + +{% block main %} + + +
+

+

+ There are many pathways to success. I started Carpenter Tutoring for + those seeking a little help finding their way. +

+

+
+ +
+
+ + + + Amy Carpenter + +
Amy Carpenter, M.Ed.
+
+ +
+

+ I received my B.A. from The College of William and Mary in 2018 and received + my M.Ed. from W&M in 2020. As an undergraduate, I worked and was trained + as a tutor at W&M's peer tutoring center, the TutorZone. During + this period, I conducted over 150 one-on-one appointments with W&M + students in 26 different content areas. I earned lifetime Advanced Tutor + Certification, the highest level W&M can grant, through the College + Reading and Learning Association, and I was trained as a time management + consultant. I took on leadership roles within the TutorZone until I was + working alongside its director. As a graduate student, I became one of the + Graduate Assistants helping oversee the TutorZone as well as an academic + coach to students with high need for academic support. +

+ +

+ I loved getting to work with the TutorZone tutors, but I realized that + I missed being the tutor. There's just nothing like watching the light bulb + of understanding go off or seeing students who had struggled with material + master it! With that realization, I decided to dedicate my life to my + passion -- helping students of all ages learn, succeed, and believe in + themselves. +

+ +

+ My instructional approach focuses on meeting students where they are and + supporting them through any hesitations or discomforts from which academic + difficulties may arise. Whether your student only has to brush up on a few + concepts or is resistant to completing coursework, I will come to each + session with patience, understanding, and just the right amount of + discipline. I truly believe that excellent educational relationships begin + with mutual respect, and I work to build meaningful relationships with all + of my clients. +

+ +

Thank you for considering Carpenter Tutoring.

+
+ +
+ +{% include "team.html.j2" %} + +{% endblock %} \ No newline at end of file diff --git a/templates/about/team.html b/templates/about/team.html deleted file mode 100644 index c2b4498..0000000 --- a/templates/about/team.html +++ /dev/null @@ -1,11 +0,0 @@ -{% for tutor in tutors %} - - {% if loop.index0 % 2 == 0 %} - {% include "blurb.html" %} - {% include "figure.html" %} - {% else %} - {% include "figure.html" %} - {% include "blurb.html" %} - {% endif %} - - {% endfor %} \ No newline at end of file diff --git a/templates/about/team.html.j2 b/templates/about/team.html.j2 new file mode 100644 index 0000000..05bb2f8 --- /dev/null +++ b/templates/about/team.html.j2 @@ -0,0 +1,11 @@ +{% for tutor in tutors %} + + {% if loop.index0 % 2 == 0 %} + {% include "blurb.html.j2" %} + {% include "figure.html.j2" %} + {% else %} + {% include "figure.html.j2" %} + {% include "blurb.html.j2" %} + {% endif %} + + {% endfor %} \ No newline at end of file -- cgit v1.2.3