forked from BrittLeigh/mccallconsulting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
223 lines (203 loc) · 8.75 KB
/
index.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
---
layout: default
published: true
---
<!-- Start Hero -->
<div class="hero" style="background: url('{{ site.baseurl }}/img/{{ site.hero.hero_img }}') no-repeat; background-size: cover;">
<div class="hero-content">
<div class="container-fluid">
<div class="hero-content-inner">
<h1>{{ site.hero.hero_title }}</h1>
<p>{{ site.hero.hero_description }}</p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="col-sm-6 col-sm-offset-6 col-md-4 col-md-offset-8 form">
<h3><svg class="icon icon-envelope-o"><use xlink:href="#icon-envelope-o"></use></svg>Contact Us</h3>
<form action="https://getsimpleform.com/messages?form_api_token={{ site.api_token }}" method="post">
<!-- the redirect_to is optional, the form will redirect to the referrer on submission -->
<input type='hidden' name='redirect_to' value='http://mccallconsulting.tech/thankyou.html' />
<div class="form-field">
<input name="name" type="text" placeholder="Name" required>
</div>
<div class="form-field">
<input name="phone" type="tel" placeholder="Phone" required>
</div>
<div class="form-field">
<input name="email" type="email" placeholder="Email" required>
</div>
<div class="form-field">
<textarea name="comments" placeholder="Message" required></textarea>
</div>
<input type="submit" class="btn btn-default" value="Send">
</form>
</div>
</div>
</div>
<!-- End Hero -->
<!-- Start 3 columns -->
<div class="three-shade-col">
<div class="col-sm-4">
<svg class="icon icon-envelope-o"><use xlink:href="#icon-envelope-o"></use></svg>
<h3>Contact Us</h3>
<ul>
{% if site.contact.phone %}<li><strong>Phone:</strong> {{ site.contact.phone }}</li>{% endif %}
{% if site.contact.email %}<li><strong>Email:</strong> {{ site.contact.email }}</li>{% endif %}
</ul>
</div>
<div class="col-sm-4">
<svg class="icon icon-clock-o"><use xlink:href="#icon-clock-o"></use></svg>
<h3>Best Time to Contact</h3>
<table>
<tbody>
<tr>
<td>Monday – Friday</td>
<td>{{ site.monday_friday }}</td>
</tr>
<tr>
<td>Saturday</td>
<td>{{ site.saturday }}</td>
</tr>
<tr>
<td>Sunday</td>
<td>{{ site.sunday }}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-4">
<svg class="icon icon-map-marker"><use xlink:href="#icon-map-marker"></use></svg>
<h3>Location</h3>
<p>
{{ site.contact.address }}
</p>
</div>
</div>
<!-- End 3 columns -->
<!-- Start About -->
<div id="about" class="about">
<div class="container-fluid">
<h2 class="section-title">About Us</h2>
<div class="row">
<div class="col-sm-6">
<h3>Welcome to McCall Consulting, LLC</h3>
<p>Meeting your tech and VA needs.</p>
<div class="media">
<div class="media-left">
<div class="boxed-icon">
<svg class="icon icon-briefcase"><use xlink:href="#icon-briefcase"></use></svg>
</div>
</div>
<div class="media-body">
<p>Josh is a software engineer by trade. Small projects to large projects- he loves them all. Currently employed at Microsoft. </p>
</div>
</div>
<div class="media">
<div class="media-left">
<div class="boxed-icon">
<svg class="icon icon-calendar"><use xlink:href="#icon-calendar"></use></svg>
</div>
</div>
<div class="media-body">
<p>Brittany is our Virtual Assistant Guru. Combining her love of technology with all things organization makes her a great fit to assist your company.</p>
</div>
</div>
<div class="media">
<div class="media-left">
<div class="boxed-icon">
<svg class="icon icon-star"><use xlink:href="#icon-star"></use></svg>
</div>
</div>
<div class="media-body">
<p>Let us know if you have any related business concerns. We would love to assist you with your technological and organizational needs.</p>
</div>
</div>
</div>
<div class="col-sm-6">
<img src="img/about.jpg" alt="...">
</div>
</div>
</div>
</div>
<!-- End About -->
<!-- Start Treatments -->
<div id="treatments" class="treatments">
<div class="container-fluid">
<h2 class="section-title">Services</h2>
<div class="row">
{% for treatment in site.data.treatments %}
<div class="col-sm-6 col-md-4">
<div class="icon-box">
<svg class="icon {{ treatment.icon }}"><use xlink:href="#{{ treatment.icon }}"></use></svg>
<h4>{{ treatment.title }}</h4>
<p>{{ treatment.description }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<!-- End Treatments -->
<!-- Start Our team -->
<div id="team" class="team" style="display:inline-block;text-align:center; overflow:unset">
<h2 class="section-title">Our Team</h2>
<div id="team2" style="display:inline-block">
{% for member in site.data.team %}
<div class="expandable-box" style="width:49%; display:inline-block">
<div class="expandable-box-top">
<img src="{{ site.baseurl }}/img/{{ member.image }}" alt="{{ member.name }}" style="width:50%">
<h4>{{ member.name }}</h4>
</div>
<div class="expandable-box-bottom">
<a href="mailto:{{ member.email }}" data-toggle="tooltip" data-placement="bottom" title="{{ member.email }}"><svg class="icon icon-envelope"><use xlink:href="#icon-envelope"></use></svg></a>
</a>
<a href="tel:{{ member.phone }}" data-toggle="tooltip" data-placement="bottom" title="{{ member.phone }}"><svg class="icon icon-phone"><use xlink:href="#icon-phone"></use></svg></a>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
<!-- End Our team -->
<!-- Start Testimonials
<div id="testimonials" class="testimonials parallax" style="background-image: url('{{ site.baseurl }}/img/{{ site.testimonials.testimonials_img }}');">
<div class="overlay-container">
<div class="overlay"></div>
<div class="container-fluid">
<div id="testimonial-carousel">
{% for testimonial in site.data.testimonials %}
<div class="testimonial-item">
<svg class="icon icon-quote-left"><use xlink:href="#icon-quote-left"></use></svg>
<blockquote>
<p>{{ testimonial.description }}</p>
<footer>
{{ testimonial.name }}
<small>{{ testimonial.title }}</small>
</footer>
</blockquote>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
End Testimonials -->
<!-- Start Gallery
<div id="gallery" class="gallery">
<h2 class="section-title">Gallery</h2>
{% for images in site.data.gallery %}
<a href="{{ site.baseurl }}/img/gallery/large/{{ images.image_large }}" class="gallery-item expandable-box image-link">
<div class="expandable-box-top">
<img src="{{ site.baseurl }}/img/gallery/thumb/{{ images.image_thumb }}" alt="{{ images.image_alt }}">
</div>
<div class="expandable-box-bottom">
<span><svg class="icon icon-chain"><use xlink:href="#icon-chain"></use></svg></span>
</div>
</a>
{% endfor %}
</div>
End Gallery -->
<!-- Start Map
<div id="location" class="map" data-zoom="{{ site.map.zoom }}" data-address="{{ site.map.address }}" data-address-details="<img src='{{ site.map.address_details }}'>"></div>
End Map -->