From ca999deb0fdaf2592760e28f540554299e420bd3 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Tue, 2 Jun 2020 23:42:45 -0400 Subject: good layout for content data; rebuild nearly complete --- .gitignore | 4 +- _bulma/package-lock.json | 13 + _bulma/package.json | 15 ++ _cobalt.yml | 2 +- _data/content/about.yml | 5 + _data/content/blurb.yml | 4 + _data/content/policies.yml | 4 + _data/offerings.yml | 78 ++++++ _includes/footer.liquid | 13 + _includes/head.liquid | 11 + _includes/nav.liquid | 26 ++ _includes/style.liquid | 1 + _layouts/index.liquid | 517 +++++++++++++++++++++++++++++++++++++++ _site/index.html | 598 ++++++++++++++++++++++++++++++++++++++++++++- assets/amy.jpg | Bin 0 -> 71038 bytes assets/bg.png | Bin 0 -> 78660 bytes assets/favicon.ico | Bin 0 -> 327262 bytes assets/logo-simple.png | Bin 0 -> 63173 bytes assets/logo.png | Bin 0 -> 113640 bytes index.md | 10 +- styles/index.scss | 144 +++++++++++ 21 files changed, 1422 insertions(+), 23 deletions(-) create mode 100644 _bulma/package-lock.json create mode 100644 _bulma/package.json create mode 100644 _data/content/about.yml create mode 100644 _data/content/blurb.yml create mode 100644 _data/content/policies.yml create mode 100644 _data/offerings.yml create mode 100644 _includes/footer.liquid create mode 100644 _includes/head.liquid create mode 100644 _includes/nav.liquid create mode 100644 _includes/style.liquid create mode 100644 _layouts/index.liquid create mode 100644 assets/amy.jpg create mode 100644 assets/bg.png create mode 100644 assets/favicon.ico create mode 100644 assets/logo-simple.png create mode 100644 assets/logo.png create mode 100644 styles/index.scss diff --git a/.gitignore b/.gitignore index e4c0585..8b71c6e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -node_modules/ +**/_site/ dist/ fonts.zip -**/*.swp +node_modules/ diff --git a/_bulma/package-lock.json b/_bulma/package-lock.json new file mode 100644 index 0000000..60cd0df --- /dev/null +++ b/_bulma/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "_bulma", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "bulma": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.8.2.tgz", + "integrity": "sha512-vMM/ijYSxX+Sm+nD7Lmc1UgWDy2JcL2nTKqwgEqXuOMU+IGALbXd5MLt/BcjBAPLIx36TtzhzBcSnOP974gcqA==" + } + } +} diff --git a/_bulma/package.json b/_bulma/package.json new file mode 100644 index 0000000..4d85e96 --- /dev/null +++ b/_bulma/package.json @@ -0,0 +1,15 @@ +{ + "name": "_bulma", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "bulma": "^0.8.2" + } +} diff --git a/_cobalt.yml b/_cobalt.yml index 71f2530..9530fcb 100644 --- a/_cobalt.yml +++ b/_cobalt.yml @@ -1,4 +1,4 @@ site: - title: Carpenter Tutoring + title: CARPENTER TUTORING description: Private tutoring services in Hampton Roads, VA base_url: http://carpentertutoring.com diff --git a/_data/content/about.yml b/_data/content/about.yml new file mode 100644 index 0000000..f0da941 --- /dev/null +++ b/_data/content/about.yml @@ -0,0 +1,5 @@ +- School is tricky, and there is no universal pathway to success. I started Carpenter Tutoring for those seeking a little help finding their way. +- 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 Tribe 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 Tribe 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. diff --git a/_data/content/blurb.yml b/_data/content/blurb.yml new file mode 100644 index 0000000..ca1eb0a --- /dev/null +++ b/_data/content/blurb.yml @@ -0,0 +1,4 @@ +- Welcome, and thank you for your interest in Carpenter Tutoring! +- Carpenter Tutoring is a private tutoring service based in Suffolk, Virginia. I offer in-person sessions throughout the Hampton Roads area and remote sessions anywhere in the country. Most of my offerings are one-on-one, and group sessions and classes are also available. +- Prices vary based on content area and delivery method but typically range around $30 per hour for group sessions and $50-60 per hour for one-on-one sessions. That being said, I never want cost to be a prohibitive factor. All prices are negotiable, and I offer flexible payment arrangements when needed. No matter your budget, I am confident that we can find an arrangement that will provide your student services without creating financial strain. +- I invite you to scroll down to learn more about the services I offer, my background, and some of my policies. Thank you for visiting, and please do not hesitate to reach out with any questions. I would be thrilled to assist you! diff --git a/_data/content/policies.yml b/_data/content/policies.yml new file mode 100644 index 0000000..c0a4bbb --- /dev/null +++ b/_data/content/policies.yml @@ -0,0 +1,4 @@ +- Payment methods I accept payments in-person through cash or checks made out to Amy Carpenter or through PayPal. If you select to pay through PayPal, there is an additional $1.50 processing fee per transaction. +- Travel policy I travel to locations throughout the Hampton Roads area, including: Suffolk, Chesapeake, Norfolk, Virginia Beach, Isle of Wight, Newport News, Yorktown, and Williamsburg. If you live outside of these areas but are only interested in in-person appointments, please contact me to make arrangements. +- Remote sessions Remote sessions are conducted from my home in Suffolk. I generally use Zoom, 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. +- Cancellation policy Appointments can be cancelled up to 24 hours before the start of the appointment free of charge. Appointments cancelled within the 24-hour window and not rescheduled in the near future will incur a late cancellation fee of $20. Appointments for which no notice of cancellation is given will be charged full price. All cancellation fees will be waived for cancellations caused by emergencies. diff --git a/_data/offerings.yml b/_data/offerings.yml new file mode 100644 index 0000000..ca0bc50 --- /dev/null +++ b/_data/offerings.yml @@ -0,0 +1,78 @@ +- name: Academic Coaching + highlight: > + Time management and study skills blended with continuing accountability + description: > + Academic Coaching offers all the benefits of Study Skills and Time + Management appointments plus ongoing planning and accountability support. + As an Academic Coach, I keep track of your student's upcoming assignments + and assessments and help craft a schedule week to week for them to + accomplish their goals. Students come away as more independent and + confident planners and self-advocates. +- name: College-Level Writing + highlight: > + Get a head start on meeting professors' expectations + description: > + Learn how to shift high-school level writing to that which will be expected + in college. Topics covered include moving beyond the five-paragraph essay, + writing research papers, and choosing a topic for essays with open prompts. + In-session exercises will allow students to implement these skills in real + time with immediate feedback. +- name: College Prep. + highlight: > + ACT & SAT preparation and assistance with college application essays + description: > + Prepare for standardized college entrace exams with one-on-one content + instruction and practice testing. Additionally, learn how to write an + attention-grabbing personal essay for college applications, and receive + guidance on institution-specific supplemental essays. +- name: Group Webinars + highlight: > + Participate in general workshops and pre-planned courses from the comfort + of home. + description: > + Join a small group of peers online to learn and grow together. One-session + webinars include highlights of time management techniques and study skills + and are best suited to high school and college students. Pre-planned + courses, including SAT prep, ACT prep, and college transition, meet once + per week for five weeks at a time. Webinars are hosted through + password-protected Zoom meetings. Participants will receive the link and + password weekly via e-mail. +- name: Parent Consultations + highlight: > + For parents seeking advice for facilitating their child's learning + description: > + After I have worked with your student for a few sessions, you may request a + Parent Consultation during which I will discuss the strengths and areas for + improvement I have seen in your child and the ways you may be able to help. + All parents want to help their children succeed, but sometimes the way we + offer that assistance is not the way children want to receive it. Learn how + to meet your child where they are and support them in ways which resonate + with their unique needs. These sessions are not tell-alls of what your + student and I discuss during our sessions, as I feel that trust is central + to successful tutoring relationships. +- name: Study Skills + highlight: > + Learn how to make the most of your study time + description: > + Study Skills sessions will allow students to develop a toolkit for + successful study habits. Learn about techniques to fight mental fatigue and + tools for mental recall. Study Skills sessions also cover ways to address + motivation, attention, and avoidance. Topics will be tailored for your + specific needs. +- name: Subject Tutoring + highlight: > + Tutoring for specific courses or disciplines + description: > + All levels of reading/language arts/English, all levels of Latin, math + through algebra II/geometry, introductory biology, physics, and chemistry + (not at the honors or AP level), and writing skills. +- name: Time Management + highlight: > + Personalized plans for managing academics, extracurriculars, and other + commitments + description: > + Learn how to balance all of the demands in your life. Time Management + sessions are tailored to your needs and can include building an + hour-by-hour schedule of your week, creating a long-term plan for + assignments and responsibilities, and discussing time and stress management + techniques. diff --git a/_includes/footer.liquid b/_includes/footer.liquid new file mode 100644 index 0000000..c086a98 --- /dev/null +++ b/_includes/footer.liquid @@ -0,0 +1,13 @@ + diff --git a/_includes/head.liquid b/_includes/head.liquid new file mode 100644 index 0000000..a1a082e --- /dev/null +++ b/_includes/head.liquid @@ -0,0 +1,11 @@ + + + + + + + + + +{{ page.title }} + diff --git a/_includes/nav.liquid b/_includes/nav.liquid new file mode 100644 index 0000000..982660b --- /dev/null +++ b/_includes/nav.liquid @@ -0,0 +1,26 @@ + diff --git a/_includes/style.liquid b/_includes/style.liquid new file mode 100644 index 0000000..f02b77e --- /dev/null +++ b/_includes/style.liquid @@ -0,0 +1 @@ + diff --git a/_layouts/index.liquid b/_layouts/index.liquid new file mode 100644 index 0000000..13ffcfc --- /dev/null +++ b/_layouts/index.liquid @@ -0,0 +1,517 @@ + + + + {% include "head.liquid" %} + {% include "style.liquid" %} + + + + {% include "nav.liquid" %} + + +
+ +
+ + +
+
+
+
+
+ {% for line in site.data.content.blurb %} +

{{ line }}

+ {% endfor %} +
+
+
+
+
+ +
+
+
+
+
+
+ + +
+
+
+
+
+
+

+ Subject Tutoring +

+

Tutoring for specific courses or disciplines.

+

+ Learn more... +

+
+
+
+ +
+
+
+

+ Time Management +

+

+ Personalized plans for managing academics, extracurriculars, + and other commitments. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

+ Study Skills +

+

Learn how to make the most of your study time.

+

+ Learn more... +

+
+
+
+ +
+
+
+

+ Academic Coaching +

+

+ Time management and study skills blended with continuing + accountability. +

+

+ Learn more... +

+
+
+
+
+
+ +
+
+
+
+
+

College Prep

+

+ ACT & SAT preparation and assistance with college + application essays. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

College-Level Writing

+

+ Get a head start on meeting professors' expectations. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

Group Webinars

+

+ Participate in general workshops and pre-planned courses from + the comfort of home. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

Parent Consultations

+

+ For parents seeking advice for facilitating their child's + learning. +

+

+ Learn more... +

+
+
+
+
+
+
+ + +
+
+
+
+
+ +
+
+
+
+ {% for line in site.data.content.about %} +

{{ line }}

+ {% endfor %} +
+
+
+
+
+ + +
+
+
+
+
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+
+ +
+
+
+
+ +
+
+ + + +
+
+
+ +
+
+
+
    + {% for line in site.data.content.policies %} +
  • {{ line }}
  • + {% endfor %} +
+
+
+
+
+
+
+ + {% include "footer.liquid" %} + + + + + + + + + + + + + + + + + + + + + diff --git a/_site/index.html b/_site/index.html index 2ae97ae..35ee34a 100644 --- a/_site/index.html +++ b/_site/index.html @@ -1,14 +1,588 @@ - - - - Welcome - Carpenter Tutoring - - -
-

Welcome - Carpenter Tutoring

-

Blog!

- -
- + + + + + + + + + + + +Welcome - Carpenter Tutoring + + + + + + + + + + + +
+ +
+ + +
+
+
+
+
+ +

Welcome, and thank you for your interest in Carpenter Tutoring!

+ +

Carpenter Tutoring is a private tutoring service based in Suffolk, Virginia. I offer in-person sessions throughout the Hampton Roads area and remote sessions anywhere in the country. Most of my offerings are one-on-one, and group sessions and classes are also available.

+ +

Prices vary based on content area and delivery method but typically range around $30 per hour for group sessions and $50-60 per hour for one-on-one sessions. That being said, I never want cost to be a prohibitive factor. All prices are negotiable, and I offer flexible payment arrangements when needed. No matter your budget, I am confident that we can find an arrangement that will provide your student services without creating financial strain.

+ +

I invite you to scroll down to learn more about the services I offer, my background, and some of my policies. Thank you for visiting, and please do not hesitate to reach out with any questions. I would be thrilled to assist you!

+ +
+
+
+
+
+ +
+
+
+
+
+
+ + +
+
+
+
+
+
+

+ Subject Tutoring +

+

Tutoring for specific courses or disciplines.

+

+ Learn more... +

+
+
+
+ +
+
+
+

+ Time Management +

+

+ Personalized plans for managing academics, extracurriculars, + and other commitments. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

+ Study Skills +

+

Learn how to make the most of your study time.

+

+ Learn more... +

+
+
+
+ +
+
+
+

+ Academic Coaching +

+

+ Time management and study skills blended with continuing + accountability. +

+

+ Learn more... +

+
+
+
+
+
+ +
+
+
+
+
+

College Prep

+

+ ACT & SAT preparation and assistance with college + application essays. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

College-Level Writing

+

+ Get a head start on meeting professors' expectations. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

Group Webinars

+

+ Participate in general workshops and pre-planned courses from + the comfort of home. +

+

+ Learn more... +

+
+
+
+ +
+
+
+

Parent Consultations

+

+ For parents seeking advice for facilitating their child's + learning. +

+

+ Learn more... +

+
+
+
+
+
+
+ + +
+
+
+
+
+ +
+
+
+
+ +

School is tricky, and there is no universal pathway to success. I started Carpenter Tutoring for those seeking a little help finding their way.

+ +

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 Tribe 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 Tribe 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.

+ +
+
+
+
+
+ + +
+
+
+
+
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+
+ +
+
+
+
+ +
+
+ + + +
+
+
+ +
+
+
+
    + +
  • Payment methods I accept payments in-person through cash or checks made out to Amy Carpenter or through PayPal. If you select to pay through PayPal, there is an additional $1.50 processing fee per transaction.
  • + +
  • Travel policy I travel to locations throughout the Hampton Roads area, includingSuffolk, Chesapeake, Norfolk, Virginia Beach, Isle of Wight, Newport News, Yorktown, and Williamsburg. If you live outside of these areas but are only interested in in-person appointments, please contact me to make arrangements.
  • + +
  • Remote sessions Remote sessions are conducted from my home in Suffolk. I generally use Zoom, 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.
  • + +
  • Cancellation policy Appointments can be cancelled up to 24 hours before the start of the appointment free of charge. Appointments cancelled within the 24-hour window and not rescheduled in the near future will incur a late cancellation fee of $20. Appointments for which no notice of cancellation is given will be charged full price. All cancellation fees will be waived for cancellations caused by emergencies.
  • + +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/amy.jpg b/assets/amy.jpg new file mode 100644 index 0000000..8618911 Binary files /dev/null and b/assets/amy.jpg differ diff --git a/assets/bg.png b/assets/bg.png new file mode 100644 index 0000000..6251881 Binary files /dev/null and b/assets/bg.png differ diff --git a/assets/favicon.ico b/assets/favicon.ico new file mode 100644 index 0000000..8ba4c15 Binary files /dev/null and b/assets/favicon.ico differ diff --git a/assets/logo-simple.png b/assets/logo-simple.png new file mode 100644 index 0000000..f4b350b Binary files /dev/null and b/assets/logo-simple.png differ diff --git a/assets/logo.png b/assets/logo.png new file mode 100644 index 0000000..da51050 Binary files /dev/null and b/assets/logo.png differ diff --git a/index.md b/index.md index e586d01..7c746bd 100644 --- a/index.md +++ b/index.md @@ -1,11 +1,5 @@ --- -layout: default.liquid +layout: index.liquid title: Welcome - Carpenter Tutoring --- -## Blog! - -{% for post in collections.posts.pages %} -#### {{post.title}} - -[{{ post.title }}]({{ post.permalink }}) -{% endfor %} +## (placeholder) diff --git a/styles/index.scss b/styles/index.scss new file mode 100644 index 0000000..ee298cc --- /dev/null +++ b/styles/index.scss @@ -0,0 +1,144 @@ +@charset "utf-8"; + +// Google Fonts +@import url("https://fonts.googleapis.com/css?family=Architects+Daughter|Indie+Flower|PT+Sans&display=swap"); + +// Palette +$darkteal: rgb(0, 100, 108); +$green: rgb(88, 169, 143); +$darkerteal: rgb(29, 133, 137); +$gray: rgb(157, 210, 211); +$teal: rgb(58, 165, 166); +$cyan: rgb(156, 210, 210); +$darkgray: rgb(127, 177, 181); +$darkgreen: rgb(59, 136, 114); +$yellow: rgb(186, 214, 187); + +// Update Bulma's global variables +$primary: $teal; +$link: $darkteal; +// $info: $cyan +$success: $green; +// $warning: $yellow +// $danger: $red +// $dark: $grey-darker +// $text: $grey-dark +$family-sans-serif: "PT Sans", sans-serif; +// $hr-background-color: $primary; +$title-color: $darkteal; +$title-family: "Architects Daughter", cursive; +$subtitle-color: $darkteal; +$subtitle-family: "Indie Flower", cursive; +//$body-font-size: 1.8rem; +// $body-background-color: $isabelline; + +// Import only what you need from Bulma +@import "../_bulma/node_modules/bulma/sass/utilities/_all.sass"; +@import "../_bulma/node_modules/bulma/sass/base/_all.sass"; +@import "../_bulma/node_modules/bulma/sass/elements/_all.sass"; +@import "../_bulma/node_modules/bulma/sass/form/_all.sass"; +@import "../_bulma/node_modules/bulma/sass/components/_all.sass"; +@import "../_bulma/node_modules/bulma/sass/layout/_all.sass"; +@import "../_bulma/node_modules/bulma/sass/grid/_all.sass"; + +.offering { + color: white; +} +.offering .content u { + cursor: pointer; +} +.column .offering { + border: 1em solid $darkgray; +} +.darkteal { + background-color: $darkteal; +} +.green { + background-color: $green; +} +.darkerteal { + background-color: $darkerteal; +} +.darkgray { + background-color: $darkgray; +} +.darkgreen { + background-color: $darkgreen; +} + +.blurb { + background-color: white; + clip-path: polygon( + 0% 0%, + 100% 0%, + 100% 75%, + 75% 75%, + 75% 100%, + 50% 75%, + 0% 75% + ); +} + +.banner { + right: 100%; + padding-top: 5%; + padding-bottom: 5%; + padding-right: 5%; + + // gradient + background: -moz-linear-gradient( + left, + rgba(255, 255, 255, 0) 0%, + rgba(255, 255, 255, 1) 50% + ); + background: -webkit-linear-gradient( + left, + rgba(255, 255, 255, 0) 0%, + rgba(255, 255, 255, 1) 50% + ); + background: linear-gradient( + to right, + rgba(255, 255, 255, 0) 0%, + rgba(255, 255, 255, 1) 50% + ); + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); +} + +.has-banner { + //margin-top: 0px !important; + //margin-bottom: 0px !important; + padding-top: 0px !important; + padding-bottom: 0px !important; + padding-right: 0px !important; + padding-left: 10% !important; +} + +.quiet { + background-color: white; +} + +.fawnseh { + font-family: "Architects Daughter", cursive; +} + +.has-text-shadow { + text-shadow: 0px 0px 4px #ffffff; +} + +@keyframes fadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +.fadeIn { + animation-name: fadeIn; + animation-duration: 0.3s; +} + +body { + background-image: url("/assets/bg.png"); +} -- cgit v1.2.3