summaryrefslogtreecommitdiff
path: root/policies
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2021-06-23 22:12:39 -0400
committerAdam T. Carpenter <atc@53hor.net>2021-06-23 22:12:39 -0400
commit470d29ca5830db6850d11298a19aa9b7ff9615d7 (patch)
treee0c5a29ea7ff519675a5c4eb34e956a515c4218c /policies
parent47352856e40e471a8ce05875fa25a0428ddb5d94 (diff)
downloadcarpentertutoring-470d29ca5830db6850d11298a19aa9b7ff9615d7.tar.xz
carpentertutoring-470d29ca5830db6850d11298a19aa9b7ff9615d7.zip
added about, updated policies, broke out header and footer, finished up
offering tiles/modals
Diffstat (limited to 'policies')
-rw-r--r--policies/index.html86
-rw-r--r--policies/index.php52
2 files changed, 52 insertions, 86 deletions
diff --git a/policies/index.html b/policies/index.html
deleted file mode 100644
index 103f97f..0000000
--- a/policies/index.html
+++ /dev/null
@@ -1,86 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <title>Policies and Procedures - Carpenter Tutoring, LLC</title>
- <link rel="stylesheet" href="/stylesheet.css" />
- <link rel="preconnect" href="https://fonts.gstatic.com" />
- <link
- href="https://fonts.googleapis.com/css2?family=Architects+Daughter&amp;family=Indie+Flower&amp;family=PT+Sans&amp;family=PT+Sans+Narrow&amp;display=swap"
- rel="stylesheet"
- />
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- </head>
-
- <body>
- <nav>
- <a href="/#">
- <img src="/assets/logo-simple.png" />
- </a>
- <a href="/#offerings">Offerings</a>
- <a href="/#pricing">Pricing</a>
- <a href="/policies">Policies</a>
- <a href="/about">About</a>
- <a href="/#reviews">Reviews</a>
- <a href="/#contact">Contact Me</a>
- </nav>
-
- <main>
- <section>
- <ul>
- <li>
- <strong>Payment methods</strong> I accept cash, checks made out to
- Amy Carpenter, or PayPal (amy@carpentertutoring.com). If you select
- to pay through PayPal, there is an additional $1.50 processing fee
- per transaction.
- </li>
-
- <li>
- <strong>Travel policy</strong> Update due to COVID-19 -- To keep all
- parties involved as safe as possible during this pandemic, I have
- shifted to remote-only tutoring for the foreseeable future.
- </li>
-
- <li>
- <strong>Remote sessions</strong> Remote sessions are conducted from
- my home in Suffolk. I generally use
- <a href="https://zoom.us">Zoom</a>, which requires students to
- download a free client on their computer or a free app on their
- phone or tablet. I am happy to accommodate if you prefer a different
- service.
- </li>
-
- <li>
- <strong>Cancellation policy</strong> Sessions cancelled within 72
- hours of their start time will incur a $20 late cancellation fee.
- </li>
-
- <li>
- <strong>No-Show policy</strong> Sessions which a student does not
- attend with no notice of cancellation will be charged the full
- session price.
- </li>
-
- <li>
- <strong>Session Duration policy</strong> Sessions are purchased in
- half-hour increments, and the shortest appointment duration is 60
- minutes. Families are responsible for the amount of time they book
- and will be charged based on that amount, regardless of the length
- of the actual appointment. If a student is late to their
- appointment, we will work to the end of their scheduled time, but no
- later.
- </li>
- </ul>
- </section>
- </main>
-
- <footer>
- <p>&copy; 2021 Carpenter Tutoring, LLC. All rights reserved.</p>
- <p>
- <a href="mailto:webmaster@carpentertutoring.com">
- Having trouble with our site?
- </a>
- </p>
- </footer>
- </body>
-</html>
diff --git a/policies/index.php b/policies/index.php
new file mode 100644
index 0000000..116a755
--- /dev/null
+++ b/policies/index.php
@@ -0,0 +1,52 @@
+<?php include('../header.php'); ?>
+<section class="banner">
+ <h1>Policies &amp; Procedures</h1>
+</section>
+<section class="quiet">
+ <p>
+ <h2>Payment Methods</h2>
+ I accept cash, checks made out to Amy Carpenter, or PayPal
+ (amy@carpentertutoring.com). If you select to pay through PayPal,
+ there is an additional $1.50 processing fee per transaction.
+ </p>
+
+ <p>
+ <h2>Travel policy</h2>
+ Update due to COVID-19 -- To keep all parties involved as safe as
+ possible during this pandemic, I have shifted to remote-only tutoring
+ for the foreseeable future.
+ </p>
+
+ <p>
+ <h2>Remote sessions</h2>
+ Remote sessions are conducted from my home in Suffolk. I generally use
+ <a href="https://zoom.us">Zoom</a>, which requires students to
+ download a free client on their computer or a free app on their phone
+ or tablet. I am happy to accommodate if you prefer a different
+ service.
+ </p>
+
+ <p>
+ <h2>Cancellation policy</h2>
+ Sessions cancelled within 72 hours of their start time will incur a
+ $20 late cancellation fee.
+ </p>
+
+ <p>
+ <h2>No-Show policy</h2>
+ Sessions which a student does not attend with no notice of
+ cancellation will be charged the full session price.
+ </p>
+
+ <p>
+ <h2>Session Duration policy</h2>
+ Sessions are purchased in half-hour increments, and the shortest
+ appointment duration is 60 minutes. Families are responsible for the
+ amount of time they book and will be charged based on that amount,
+ regardless of the length of the actual appointment. If a student is
+ late to their appointment, we will work to the end of their scheduled
+ time, but no later.
+ </p>
+</section>
+<section></section>
+<?php include('../footer.php'); ?>