forked from starkandwayne-attic/starkandwayne.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-us.html
118 lines (100 loc) · 3.13 KB
/
contact-us.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
---
layout: default
title: "Contact Us"
description: ""
theme:
name: smart-business-template
---
{% include JB/setup %}
<!-- start: Map -->
<div class="hidden-tablet hidden-phone">
<!-- starts: Google Maps -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<div id="googlemaps-container-top"></div>
<div id="googlemaps" class="google-map google-map-full"></div>
<div id="googlemaps-container-bottom"></div>
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="{{ ASSET_PATH }}/js/jquery.gmap.min.js"></script>
<script type="text/javascript">
$('#googlemaps').gMap({
maptype: 'ROADMAP',
scrollwheel: false,
zoom: 9,
markers: [
{
address: 'Palo Alto, California, United States', // Your Adress Here
html: '',
popup: false
}
]
});
</script>
<!-- end: Google Maps -->
</div>
<!-- end: Map -->
<!-- start: Wrapper -->
<div id="wrapper">
<!-- start: Container -->
<div class="container">
<!-- start: Row -->
<div class="row">
<!-- start: Contact Info -->
<div class="span6">
<div class="title"><h3>Contact Info</h3></div>
<p>
<b>Stark & Wayne LLC</b>
</p>
<p>
Palo Alto, CA 94303, USA
</p>
<p>
Phone: +1 (415) 860 2185
</p>
<p>
Email: drnic@starkandwayne.com
</p>
<p>
Web: <a href="http://starkandwayne.com" title="Stark & Wayne">starkandwayne.com</a>
</p>
</div>
<!-- end: Contact Info -->
<!-- start: Contact Form -->
<div class="span6">
<div class="title"><h3>Contact Form</h3></div>
<!-- start: Contact Form -->
<div id="contact-form">
<form method="post" action="">
<fieldset>
<div class="clearfix">
<label for="name"><span>Name:</span></label>
<div class="input">
<input tabindex="1" size="18" id="name" name="name" type="text" value="">
</div>
</div>
<div class="clearfix">
<label for="email"><span>Email:</span></label>
<div class="input">
<input tabindex="2" size="25" id="email" name="email" type="text" value="" class="input-xlarge">
</div>
</div>
<div class="clearfix">
<label for="message"><span>Message:</span></label>
<div class="input">
<textarea tabindex="3" class="input-xlarge" id="message" name="body" rows="7"></textarea>
</div>
</div>
<div class="actions">
<button tabindex="3" type="submit" class="btn btn-succes btn-large">Send message</button>
</div>
</fieldset>
</form>
</div>
<!-- end: Contact Form -->
</div>
<!-- end: Contact Form -->
</div>
<!-- end: Row -->
</div>
<!-- end: Container -->
</div>
<!-- end: Wrapper -->