-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter.php
74 lines (70 loc) · 2.7 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
<footer>
<div class="top-footer">
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>
عن الشركة
</h3>
<p>
هناك حقيقة مثبتة منذ زمن طويل وهي أن المحتوى المقروء لصفحة ما سيلهي القارئ عن التركيز على الشكل الخارجي للنص أو شكل توضع الفقرات
</p>
<a href="" class="facebook">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="" class="pinterest">
<i class="fa fa-pinterest" aria-hidden="true"></i>
</a>
<a href="" class="google">
<i class="fa fa-google-plus" aria-hidden="true"></i>
</a>
<a href="" class="twitter">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="" class="linkedin">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
<div class="col-md-6">
<h3>
الاتصال بالشركة
</h3>
<ul class="contact-us list-unstyled">
<li>
<i class="fa fa-map-marker" aria-hidden="true"></i>
الامارات العربية المتحدة في منطقة بن راشد
</li>
<li>
<i class="fa fa-phone" aria-hidden="true"></i>
2 0101010101+
</li>
<li>
<i class="fa fa-envelope" aria-hidden="true"></i>
email@domain.com
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="copyright text-center">
<p>
جميع الحقوق محفوظة
</p>
</div>
</footer>
<!-- jQuery file -->
<?php wp_footer(); ?>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCqgEcKPivfnQ3sYeTgWqJSgvXa_KG_8A8&callback=initMap"
async defer></script>
</body>
</html>