-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmpl_contact.php
100 lines (93 loc) · 2.9 KB
/
tmpl_contact.php
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
<?php
/* Template Name: Contact Template */
?>
<?php get_header();?>
<script>
function initializeV3Map() {
var officePosition = new google.maps.LatLng(54.6548566, -8.1090246);
var courthousePosition = new google.maps.LatLng(54.65455, -8.110458);
var mapOptions = {
center : new google.maps.LatLng(54.6548566, -8.1090246),
zoom : 15,
mapTypeId : google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions);
var officeMarker = new google.maps.Marker({
position : officePosition,
map : map,
title : "McIntyre O'Brien Solicitors"
});
var courthouseMarker = new google.maps.Marker({
position : courthousePosition,
map : map,
title : "Court House"
});
}
jQuery(document).ready(function() {
initializeV3Map();
});
</script>
<div class="row">
<div class="col-md-8">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<h3><?php the_title();?></h3>
<hr>
<?php the_content();?>
<?php endwhile; else:?>
<p>
<?php _e('Sorry, this page does not exist.');?>
</p>
<?php endif;?>
<div class="row">
<h4 class="col-md-9">Address</h4>
</div>
<div class="row">
<address class="col-md-4">
McIntyre O'Brien Solicitors<br>
<?php echo get_option('contact_address_line1');?><br>
<?php echo get_option('contact_address_line2');?><br>
<?php echo get_option('contact_address_line3');?>
</address>
<address class="col-md-4 col-md-offset-1">
<strong>Fax: </strong> <?php echo get_option('contact_phone');?><br>
<strong>Phone: </strong> <?php echo get_option('contact_fax');?><br>
<strong>Email:</strong> <a href="mailto:<?php echo get_option('contact_email');?>"><?php echo get_option('contact_email');?></a>
</address>
</div>
</br />
<div class="row">
<p class="col-md-9">Alternatively, submit your details below to contact us regarding any queries.</p>
</div>
<div class="row" id="contactCallbackForm">
<div class="col-md-9">
<?php include('php/enquiry-form.php'); ?>
</div>
</div>
<div class="row">
<div class="col-md-9">
<button class="btn btn-primary" data-bind="click: sendEnquiry ">
Send Request
</button>
</div>
</div>
</div>
<div class="servicesSidebar col-md-4">
<h3>How to find us</h3>
<hr>
<p>
<small>Located in the heart of Donegal Town on Castle Street, around the corner from the Courthouse and the Diamond.</small>
</p>
<div id="map_canvas"></div>
<p>
<a id="directions" href="http://maps.google.com/maps?q=castle%20street,%20donegal%20town,%20ireland" target="_blank">Click here for directions</a>
</p>
<h3>Spread the word</h3>
<hr>
<p>
<small>Use the links below to tell your friends about us or add this site to your favourites</small>
</p>
<?php include('php/share.php'); ?>
</div><!-- sidebar -->
</div>
<?php get_footer();?>