summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/about/blurb.html4
-rw-r--r--templates/about/figure.html8
-rw-r--r--templates/about/index.html71
-rw-r--r--templates/about/team.html15
-rw-r--r--templates/base.html6
-rw-r--r--templates/brochure/brochure.css93
-rw-r--r--templates/brochure/brochure.html37
-rw-r--r--templates/brochure/brochure.js34
-rw-r--r--templates/brochure/index.html32
-rw-r--r--templates/index.html5
10 files changed, 299 insertions, 6 deletions
diff --git a/templates/about/blurb.html b/templates/about/blurb.html
new file mode 100644
index 0000000..630cf65
--- /dev/null
+++ b/templates/about/blurb.html
@@ -0,0 +1,4 @@
+<div id="{{ tutor.id() }}">
+ <h2>{{ tutor.display_name() }}</h2>
+ <p>{{ tutor.blurb()|markdown }}</p>
+</div>
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>
diff --git a/templates/about/index.html b/templates/about/index.html
new file mode 100644
index 0000000..0c1d519
--- /dev/null
+++ b/templates/about/index.html
@@ -0,0 +1,71 @@
+{% extends "base.html" %}
+
+{% block main %}
+<section class="banner">
+ <h1>About Us</h1>
+</section>
+
+<section class="quiet squarshed">
+ <p>
+ <h2 style="font-size: 1.5em; text-align: center;">
+ School is tricky, and there is no universal pathway to success. I started
+ Carpenter Tutoring for those seeking a little help finding their way.
+ </h2>
+ </p>
+</section>
+
+<section class="quiet flexible squarshed">
+ <figure class="shadowy">
+ <picture>
+ <source srcset="/assets/amy.webp" type="image/webp" />
+ <source srcset="/assets/amy.png" type="image/png" />
+ <img alt="Amy Carpenter" src="/assets/amy.png" />
+ </picture>
+ <figcaption>Amy Carpenter, M.Ed.</figcaption>
+ </figure>
+
+ <div>
+ <p>
+ I received my B.A. from The College of William and Mary in 2018 and received
+ my M.Ed. from W&amp;M in 2020. As an undergraduate, I worked and was trained
+ as a tutor at W&amp;M's peer tutoring center, the TutorZone. During
+ this period, I conducted over 150 one-on-one appointments with W&amp;M
+ students in 26 different content areas. I earned lifetime Advanced Tutor
+ Certification, the highest level W&amp;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.
+ </p>
+
+ <p>
+ 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.
+ </p>
+
+ <p>
+ 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.
+ </p>
+
+ <p>Thank you for considering Carpenter Tutoring.</p>
+ </div>
+
+</section>
+
+<section></section>
+
+{% include "team.html" %}
+
+{% endblock %}
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 %}
diff --git a/templates/base.html b/templates/base.html
index 1657ec1..f146a44 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -12,8 +12,8 @@
</style>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Indie+Flower&family=PT+Sans&display=swap" rel="stylesheet" />
- <link rel="stylesheet" href="/static/desktop.css" />
- <link rel="stylesheet" href="/static/widescreen.css" />
+ <link rel="stylesheet" href="/desktop.css" />
+ <link rel="stylesheet" href="/widescreen.css" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Tutoring Excellence Online and in Suffolk, VA" />
@@ -50,7 +50,7 @@
</picture>
</figure>
<p>
- &copy; 2019-<?php echo date('Y'); ?> Carpenter Tutoring, LLC. All rights reserved.
+ &copy; 2019-{{ self::current_year() }} Carpenter Tutoring, LLC. All rights reserved.
</p>
<p>
<a href="https://g.page/carpenter-tutoring?share">Visit me on Google</a>
diff --git a/templates/brochure/brochure.css b/templates/brochure/brochure.css
new file mode 100644
index 0000000..2abb118
--- /dev/null
+++ b/templates/brochure/brochure.css
@@ -0,0 +1,93 @@
+/*
+Copyright (c) 2024 by Daniel Pox (https://codepen.io/danielpox/pen/abOopYo)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+*/
+
+
+.paper {
+ display: grid;
+
+ width: 8.25rem;
+
+ grid-template-columns: 8.25rem;
+ grid-template-rows: 19.41rem; /* .425 aspect */
+
+ margin: 2rem auto;
+
+ transform-style: preserve-3d;
+ transition: transform linear 1s;
+}
+.paper.flip {
+ transform: rotateY(180deg);
+}
+
+.paper .page {
+ display: inline-block;
+
+ grid-column: 1 / 2;
+ grid-row: 1 / 2;
+
+ position: relative;
+
+ transform-style: preserve-3d;
+
+ box-shadow: 0 4px 8px #0001;
+}
+
+.paper .page .side {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+
+ background: white;
+ backface-visibility: hidden;
+}
+
+.paper .page .side.back {
+ transform: rotateY(180deg);
+}
+
+.page {
+ transition: transform linear 1s;
+}
+.left.open {
+ transform: rotateY(-180deg);
+}
+.right.open {
+ transform: rotateY(180deg);
+}
+
+.paper .page .side {
+ box-shadow: inset 1px 0 #f2f2f2, inset -1px 0 #f2f2f2;
+}
+
+.side img {
+ max-width: 100%;
+ max-height: 100%;
+}
+
+.left {
+ transform: translateZ(2px);
+ transform-origin: center left;
+}
+
+.right {
+ transform: translateZ(1px);
+ transform-origin: center right;
+}
+
+@media only screen and (min-width: 1500px) {
+ .paper {
+ width: 21.25em;
+
+ grid-template-columns: 21.25em;
+ grid-template-rows: 50em; /* .425 aspect */
+ }
+}
diff --git a/templates/brochure/brochure.html b/templates/brochure/brochure.html
new file mode 100644
index 0000000..b5a3cd3
--- /dev/null
+++ b/templates/brochure/brochure.html
@@ -0,0 +1,37 @@
+<!--
+Copyright (c) 2024 by Daniel Pox (https://codepen.io/danielpox/pen/abOopYo)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+-->
+
+<button class="button">Flip</button>
+<div class="paper">
+ <div class="page left">
+ <div class="side front">
+ <img src="/assets/brochure/brochure-front-left.png"/>
+ </div>
+ <div class="side back">
+ <img src="/assets/brochure/brochure-back-left.png"/>
+ </div>
+ </div>
+ <div class="page right">
+ <div class="side front">
+ <img src="/assets/brochure/brochure-front-right.png"/>
+ </div>
+ <div class="side back">
+ <img src="/assets/brochure/brochure-back-right.png"/>
+ </div>
+ </div>
+ <div class="page center">
+ <div class="side front">
+ <img src="/assets/brochure/brochure-front-center.png"/>
+ </div>
+ <div class="side back">
+ <img src="/assets/brochure/brochure-back-center.png"/>
+ </div>
+ </div>
+</div>
diff --git a/templates/brochure/brochure.js b/templates/brochure/brochure.js
new file mode 100644
index 0000000..4872373
--- /dev/null
+++ b/templates/brochure/brochure.js
@@ -0,0 +1,34 @@
+/*
+Copyright (c) 2024 by Daniel Pox (https://codepen.io/danielpox/pen/abOopYo)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+*/
+
+
+document.addEventListener("DOMContentLoaded", (event) => {
+ const paper = document.querySelector(".paper");
+
+ const flipButton = document.querySelector("button")
+ flipButton.addEventListener("click", () => {
+ paper.classList.toggle("flip")
+ })
+
+ const leftSide = paper.querySelector(".page.left");
+ leftSide.addEventListener("click", () => {
+ leftSide.classList.toggle("open")
+ });
+
+ const rightSide = paper.querySelector(".page.right");
+ rightSide.addEventListener("click", () => {
+ rightSide.classList.toggle("open")
+ });
+
+ const centerSide = paper.querySelector(".page.center");
+ centerSide.addEventListener("click", () => {
+ centerSide.classList.toggle("open")
+ });
+});
diff --git a/templates/brochure/index.html b/templates/brochure/index.html
new file mode 100644
index 0000000..41a62f4
--- /dev/null
+++ b/templates/brochure/index.html
@@ -0,0 +1,32 @@
+{% extends "base.html" %}
+
+{% block style %}
+ {% include "../styles.css" %}
+ {% include "brochure.css" %}
+{% endblock %}
+
+{% block main %}
+<section class="banner">
+ <h1>Interactive Brochure</h1>
+</section>
+
+<section class="quiet">
+ <noscript>
+ This brochure requires JavaScript to work properly. If you prefer not to use JavaScript, you can <a href="/#offerings">view our offerings on our homepage here.</a>
+ </noscript>
+
+ <p>
+ Click on pages to fold and unfold and use <em>Flip</em> to toggle front and back. This works best on a tablet or desktop screen.
+ </p>
+
+ {% include "brochure.html" %}
+
+</section>
+
+<section></section>
+
+<script>
+ {% include "brochure.js" %}
+</script>
+
+{% endblock %}
diff --git a/templates/index.html b/templates/index.html
index 48e85e8..c9b0e60 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -123,8 +123,7 @@
<div id="offering-music-lessons" class="modal">
<div class="card">
<p>
- Instruments offered include piano, guitar, drums, and voice.
- Instrument lessons include a combination of formal instruction and
+ Piano lessons include a combination of formal instruction and
ear-training, which allows students to select the songs they'd like to
learn. Music composition lessons focus on the techniques necessary for
writing original songs, whether they be instrumental or singer/songwriter
@@ -284,7 +283,7 @@
<div class="card">
<h2>Music Lessons</h2>
- <p>Instrument and/or composition lessons for students of all ages</p>
+ <p>Piano and/or composition lessons for students of all ages</p>
<a class="button" href="#offering-music-lessons"><img src="/assets/icons/dots-horizontal-circle.svg" alt="expand" /> Learn more</a>
</div>