summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2022-11-17 19:40:48 -0500
committerAdam T. Carpenter <atc@53hor.net>2022-11-17 19:40:48 -0500
commit71db183b94d76180ba151a588918157a443c1522 (patch)
tree730abaeab32eae95e254d59a8432bf6997e5c49c
parenta16c7ed0dc27a5d774f01a923b8e2dcea42a0df0 (diff)
downloadcarpentertutoring-71db183b94d76180ba151a588918157a443c1522.tar.xz
carpentertutoring-71db183b94d76180ba151a588918157a443c1522.zip
feat: add tutor bio page with joelm
-rw-r--r--footer.php4
-rw-r--r--tutors/index.php26
2 files changed, 27 insertions, 3 deletions
diff --git a/footer.php b/footer.php
index 91bc9d6..2b55418 100644
--- a/footer.php
+++ b/footer.php
@@ -9,9 +9,7 @@
</picture>
</figure>
<p>
- &copy;
- <?php echo date('Y'); ?>
- Carpenter Tutoring, LLC. All rights reserved.
+ &copy; 2019-<?php echo date('Y'); ?> Carpenter Tutoring, LLC. All rights reserved.
</p>
<p>
<a href="https://g.page/carpenter-tutoring?share">Visit me on Google</a>
diff --git a/tutors/index.php b/tutors/index.php
new file mode 100644
index 0000000..b4c347c
--- /dev/null
+++ b/tutors/index.php
@@ -0,0 +1,26 @@
+<?php include('../header.php'); ?>
+<section class="banner">
+ <h1>Our Tutors</h1>
+</section>
+
+<section class="quiet flexible">
+ <div>
+ <h2>Joel Monroe</h2>
+ <p>
+
+ Joel Monroe has been a math nerd since he first discovered the number 11. Since then, he has worked to develop his skills in both studying and teaching math. Joel earned his Bachelor's in Mathematics and his Master's in Computational Operations Research from the College of William &amp; Mary. Throughout his education, he has consistently sought opportunities to tutor, whether it was helping friends in high school, peers in college, or other students during his Master's program. Joel has a passion for seeing students break through the barriers which can form when studying math and discover the amazing language hidden within. As a part of Carpenter Tutoring, Joel is happy to offer assistance to students in high school and college math and introductory physics.
+ </p>
+ </div>
+
+ <figure class="shadowy">
+ <picture>
+ <source srcset="/assets/joelm.webp" type="image/webp" />
+ <source srcset="/assets/joelm.png" type="image/png" />
+ <img alt="Joel Monroe" src="/assets/joelm.png" />
+ </picture>
+ <figcaption>Joel Monroe, M.Sc.</figcaption>
+ </figure>
+
+</section>
+<section></section>
+<?php include('../footer.php'); ?>