-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout_contact.php
More file actions
57 lines (56 loc) · 1.95 KB
/
Copy pathlayout_contact.php
File metadata and controls
57 lines (56 loc) · 1.95 KB
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
<?php
/*
Template Name: Contact Page
*/
global $pageID;
global $pageClass;
$pageClass = "contact-page two-column";
$pageID = "contact";
get_header();
?>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyBmszP-BWwdQbpiEMqaVOhvzKLUIrhLNwQ&sensor=false"> </script>
<div id='content'>
<div id='primary'>
<h2 class='page-heading'>
<span class='section'><?php the_title(); ?></span>
</h2>
<div class="contact_map">
<div id="map_canvas"> </div>
</div>
<?php $t_options = turing_get_theme_options(); ?>
<div class="columns">
<div class="column">
<a tel="<?php echo $t_options['company_phone']; ?>" class="phone"><?php echo $t_options['company_phone']; ?></a>
<a href="mailto:<?php echo $t_options['company_email']; ?>" class="email"><?php echo $t_options['company_email']; ?></a>
<a href="http://twitter.com/<?php echo $t_options['company_twitter'];?>" class="twitter">@<?php echo $t_options['company_twitter']; ?></a>
</div>
<div class="column address">
<h4><?php echo $t_options['company_address_1']; ?></h4>
<p>
<?php echo $t_options['company_address_2']; ?>
<br/>
<?php echo 'Suite '.$t_options['company_address_2b']; ?>
<br/>
<?php echo $t_options['company_address_3']; ?>
</p>
</div>
</div>
<hr />
<div class="contact_form">
<h2 class="form_title">Drop Us a Line</h2>
<?php
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
<div class="clear"> </div>
<div id="thanks">
<h3>Thanks!</h3>
<p>We’ve received your message through the internet tubes and a Colorflow team member will be in touch soon.</p>
</div>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div> <!-- END WRAPPER -->
<?php get_footer(); ?>