-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
130 lines (109 loc) · 5.43 KB
/
contact.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
---
layout: default_dark
title: Get in touch.
---
<section class="contact-intro">
<div class="intro-body">
<div class="container">
<div class="row">
<main class="col-md-12 ">
<h2>Get in touch.</h2>
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
<h4 class="contact-title">General</h4>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="col-md-4">
<h4 class="contact-title">Media</h4>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="col-md-4">
<h4 class="contact-title">Careers</h4>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<div class="row">
<div class="col-md-12" style="padding-top: 60px;">
You can even call us at <a href="tel:+14342607732">434.260.7732</a> we're friendly!
</div>
</div>
</div>
</main>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="container content-section">
<div class="row text-center">
<div class="col-lg-8 col-lg-offset-2">
<ul class="list-inline banner-social-buttons">
{% for network in site.social %}
<li>
<a href="{{ network.url }}" rel="nofollow" onclick="ga('send','event','button', 'social_clicked');"
target="_blank"><i class="fa fa-{{ network.title }} fa-fw"></i></a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="row text-center">
<div class="col-lg-8 col-lg-offset-2 hidden">
<p class="text-center" style="margin-top: 120px; margin-bottom: 60px">Get something on the calendar.<br/> <br/>
<!--<a href="tel:+14342607732" rel="nofollow" onclick="ga('send','event','button', 'phone_clicked');" target="_blank" class="btn btn-default btn-lg"> +1 434 260-7732</a>-->
<script src="https://calendly.com/assets/external/widget.js" type="text/javascript"></script>
<a href="" rel="nofollow" class="btn btn-default btn-lg"
onclick="ga('send','event','button', 'sched_clicked');Calendly.showPopupWidget('https://calendly.com/alleyway/30min');return false;"><i
class="fa fa-calendar" aria-hidden="true"></i> Schedule a call</a>
</p>
</div>
</div>
<div class="row" style="margin-top: 120px; margin-bottom: 120px">
<br/>
<p class="text-center">Send us a note.</p>
<div class="col-lg-8 col-lg-offset-2">
<form method="POST" name="sentMessage"
id="contactForm" novalidate>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Name</label>
<input type="text" name="name" class="form-control" placeholder="Name" id="name" required
data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Email</label>
<input type="email" name="_replyto" class="form-control" placeholder="Email"
id="email" required
data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
</div>
<div>
<input type="hidden" name="_subject" value="New submission!">
<input type="text" name="_gotcha" style="display:none"/>
</div>
<div class="row control-group">
<div class="form-group col-xs-12 floating-label-form-group controls">
<label>Message</label>
<textarea rows="5" name="message" class="form-control" placeholder="Message" id="message"
required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<br>
<div id="success"></div>
<div class="row">
<div class="form-group col-xs-12">
<button type="submit" class="btn btn-default btn-lg" style="width: 156px">Send</button>
</div>
</div>
</form>
</div>
</div>
</section>
<div class="container-fluid alleyway-banner-small">
</div>