-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
85 lines (71 loc) · 2.29 KB
/
footer.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
<div class = "navOptionsSection" id = "contactUsSection"></div>
<div id="map"></div>
<script>
function initMap() {
var myLatLng = {lat: -25.363, lng: 131.044};
// Create a map object and specify the DOM element
// for display.
var map = new google.maps.Map(document.getElementById('map'), {
center: myLatLng,
zoom: 4
});
// Create a marker and set its position.
var marker = new google.maps.Marker({
map: map,
position: myLatLng,
title: 'Hello World!'
});
}
</script>
<!-- ...api/js?key= YOUR_KEY_HERE &callback=initmap"-->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB4217tuYuAr0OEV9tCKW4Ol2DgDsxjueg&callback=initMap"
async defer></script>
<footer>
<div class ='container'>
<div class = 'row'>
<div class="col-lg-4">
<img src="<?php echo ASSETS_PATH; ?>/icons/placeholder.png" alt=""
style = "width: 25px; margin-right:10px;vertical-align:top"/>
<span style = "display: inline-block" class = "text-left">
<strong>Metro Manila Address:</strong>
<p id = "mainAddressContent"></p>
</span>
</div>
<div class="col-lg-4">
<div>
<img src="<?php echo ASSETS_PATH; ?>/icons/phone-call.png" alt=""
style = "width: 25px; margin-right: 10px; vertical-align:top"/>
<span style = "display: inline-block" class = "text-left">
<p>
+63 2 501.3503 <br>
+63 917.827.7523 <br><br>
</p>
</span>
</div>
<img src="<?php echo ASSETS_PATH; ?>/icons/envelope.png" alt=""
style = "width: 25px; margin-right:10px;vertical-align:top"/>
<span style = "display: inline-block" class = "text-left">
<p id = "emailContent"></p>
</span>
</div>
<div class="col-lg-4">
<strong>Provincial Address:</strong>
<p>
<br>
Rizal St. Brgy. Candao,<br>
Dulag, Leyte, Philippines<br>
</p>
</span>
<p><br></p>
<strong>Find us on Facebook:</strong>
<a style = "text-decoration: none"
id = "fbLinkContent"></a>
</span>
</div>
</div>
</div>
</footer>
<script src="<?php echo JS_PATH; ?>/jquery.waypoints.min.js"></script>
<?php wp_footer(); ?>
</body>
</html>