summaryrefslogtreecommitdiff
path: root/templates/index.html.j2
blob: 390a471245bf0c85b63eafd3dd9798192590bdae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{% extends "base.html.j2" %}

{% block main %}
<!--banner-->
<section class="banner">
	<h1>
		CARPENTER TUTORING
	</h1>
</section>

<section class="centered">
	<h6>
		Discovering your path to success.
	</h6>
</section>

<!-- offerings -->
<section id="offerings" class="cards">
	<div class="card full">
		<h3>
			Services
		</h3>
	</div>

	<div class="card">
		<p>
			<a href="/k12">
				K-12
			</a>
		</p>
	</div>

	<div class="card">
		<p>
			<a href="/highered">
				Higher Education
			</a>
		</p>
	</div>

	<div class="card">
		<p>
			<a href="/professional">
				Professional
			</a>
		</p>
	</div>
</section>

<!-- help -->
<section class="centered" id="help">
	<h2>Helpful Links</h2>
	<div class="buttons">
		<a class="button primary centered" href="/brochure">View an interactive brochure of our offerings</a>
		<a class="button centered" href="/policies">See policies and procedures regarding scheduling, payment, and
			booking</a>
	</div>
</section>

<!-- reviews -->
<section id="reviews" class="cards">
	{% let name = "Kim J." %}
	{% let title = "K-12 Subject Tutoring parent" %}
	{% let quote = "So glad we found Amy! I have seen my daughter's confidence and grades improve since Amy started tutoring her. She meets my daughter at her level and helps her grow. Can't say enough good things about her!" %}
	{% let stars = 5 %}
	{% include "review.html.j2" %}

	{% let name = "Kristina W." %}
	{% let title = "K-12 Subject Tutoring & Higher Education Academic Coaching parent" %}
	{% let quote = "Amy Carpenter is an amazingly gifted tutor. She is kind, patient, potisiv[e], encouraging, and supportive. She treats all of her students with respect and never makes them feel \"lesser than\" or that their questions are \"stupid.\" She has made a huge difference to our lives and our family is very thankful for her expertise and support!" %}
	{% let stars = 5 %}
	{% include "review.html.j2" %}

	{% let name = "Karla R." %}
	{% let title = "Higher Education Academic Coaching parent" %}
	{% let quote = "Amy does a great job at keeping our son on task and ensuring that he does not miss any assignments or important deadlines. I value Amy’s level headedness the most in our interactions as I feel like I can accidentally slip into anxiety mode with my son when he has hiccups and Amy has been a great resource in helping me check my emotions as she calmly assures me that he [is] staying on track with his studies. Amy has also gone above and beyond by helping our son contemplate his next stage with regard to graduate school or entering the workforce which is definitely still a \"work in progress\". I can wholeheartedly recommend Amy and have already done so many times to friends and family." %}
	{% let stars = 0 %}
	{% include "review.html.j2" %}
</section>
{% endblock %}