-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
80 lines (72 loc) · 3.43 KB
/
Copy pathfooter.php
File metadata and controls
80 lines (72 loc) · 3.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php if (! is_page_template( 'temp-contact.php' ) ) { ?>
<!-- call to action -->
<section class="call-to-action">
<h2 class="main-heding">Your next car is waiting for you here...</h2>
<div class="call_button mt-5 d-flex justify-content-center mx-auto">
<a href="#">
<div class="button">
<img src="<?php bloginfo('template_directory'); ?>/assets/icons/env.svg" alt="env" width="28"
height="28" />
<span>INFO@001CARS.COM</span>
</div>
</a>
<a href="#">
<div class="button btn-dark">
<img src="<?php bloginfo('template_directory'); ?>//assets/icons/phone.svg" alt="env" width="27"
height="28" />
<span>+420 246 034 700</span>
</div>
</a>
</div>
</section>
<?php } ?>
<!-- footer section -->
<footer class="container">
<section class="footer_nav row">
<div class="col-md-2">
<h3>SUPPORT</h3>
<?php wp_nav_menu( array( 'theme_location' => 'footer-1','fallback_cb'=> 'fallbackmenu1' ) ); ?>
</div>
<div class="col-md-2">
<h3>SERVICE</h3>
<?php wp_nav_menu( array( 'theme_location' => 'footer-2','fallback_cb'=> 'fallbackmenu1' ) ); ?>
</div>
<div class="col-md-4">
<h3>DEALER</h3>
<?php wp_nav_menu( array( 'theme_location' => 'footer-3','fallback_cb'=> 'fallbackmenu1' ) ); ?>
</div>
<div class="col-md-3">
<h3>STAY IN CONTACT</h3>
<div class="input mt-5">
<input value="" placeholder="Location">
<img src="<?php bloginfo('template_directory'); ?>/assets/icons/pin.svg" alt="pin" />
</div>
<div class="social mt-5">
<a href=""><img src="<?php bloginfo('template_directory'); ?>/assets/icons/fb.svg"
alt="facebook" /></a>
<a href="#"><img src="<?php bloginfo('template_directory'); ?>/assets/icons/in.svg"
alt="instagram" /></a>
<a href="#"><img src="<?php bloginfo('template_directory'); ?>/assets/icons/tw.svg"
alt="twitter" /></a>
<a href="#"><img src="<?php bloginfo('template_directory'); ?>/assets/icons/yt.svg"
alt="youtube" /></a>
</div>
</div>
</section>
<section class="copyright d-flex justify-content-between">
<p>Copyrights © 2023 All Rights Reserved. Design by Lion Nathaniel Papcke</p>
<?php wp_nav_menu( array( 'theme_location' => 'footer-4','menu_class'=> 'extra-links d-flex', 'container' => 'false' ) ); ?>
</section>
</footer>
<?php wp_footer(); ?>
<script>
$(document).ready(function() {
$('.submit_on_enter').keydown(function(event) {
// enter has keyCode = 13, change it if you want to use another button
this.form.submit();
return false;
});
});
</script>
</body>
</html>