This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
137 lines (116 loc) · 4.63 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Beans Theme
* @subpackage Motors Theme
* @since 1.0
* @version 1.0
*/
?>
<section class="page-section car-model-slider">
<div class="owl-carousel owl-theme">
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/volvo.png'/></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/mercedes.png'/></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/bmw.png'></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/ford.png'/></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/mini.png'/></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/fiat.png'/></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/audi.png'/></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/vw.png'/></div>
<div class="item"><img src='<?php echo THEMEROOT;?>/assets/images/vauxhall.png'/></div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer-section">
<div class="container">
<div class="row">
<div class="col-md-4">
<address>
<img src="<?php echo THEMEROOT;?>/assets/images/motors-logo.svg"/>
<h4>Jaddah Motors</h4>
12 Conway Road, Plumstead, <br>
London, <br>
SE18 1AQ <br>
<i class="fa fa-phone"></i><tel> 020 8317 4430</tel>
</address>
<ul class="list-inline social">
<li><a href="#"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-google-plus-square"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin-square"></i></a></li>
<li><a href="#"><i class="fa fa-rss-square"></i></a></li>
<li><a href="#"><i class="fa fa-youtube-play"></i></a></li>
</ul>
</div>
<div class="col-md-4">
<h4 class='footer-heading'>Opening Times</h4>
<ul class="opening-time">
<li><strong>Mon:</strong> 8am - 6pm</li>
<li><strong>Tue:</strong> 8am - 6pm</li>
<li><strong>Wed:</strong> 8am - 6pm</li>
<li><strong>Thu:</strong> 8am - 6pm</li>
<li><strong>Fri:</strong> 8am - 6pm</li>
<li><strong>Sat:</strong> 8am - 4pm</li>
<li><strong>Sun:</strong> Closed</li>
</ul>
</div>
<div class="col-md-4">
<h4 class="footer-heading">Menu</h4>
<ul class="footer-menu">
<li><a href="#">Contact Us</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Cookies</a></li>
</ul>
</div>
</div>
</div>
</footer>
<div class="copyright-section">
<div class="container">
<div class="row">
<div class="col-sm-12">
<p class="pull-right">
<a href="#" class="back-to-top">
<i class="fa fa-arrow-up"></i>
</a>
</p>
<p>
© 2016 Jaddah Motors
</p>
</div>
</div>
</div>
</div>
<!--TODO: Study and make footer customizable-->
<!--<footer id="colophon" class="site-footer" role="contentinfo">-->
<!--<div class="wrap">-->
<?php
//get_template_part( 'template-parts/footer/footer', 'widgets' );
if ( has_nav_menu( 'social' ) ) : ?>
<!--<nav class="social-navigation" role="navigation" aria-label="<?php _e( 'Footer Social Links Menu', 'twentyseventeen' ); ?>">-->
<?php
// wp_nav_menu( array(
// 'theme_location' => 'social',
// 'menu_class' => 'social-links-menu',
// 'depth' => 1,
// 'link_before' => '<span class="screen-reader-text">',
// 'link_after' => '</span>' . twentyseventeen_get_svg( array( 'icon' => 'chain' ) ),
// ) );
?>
<!--</nav>-->
<?php endif;
// get_template_part( 'template-parts/footer/site', 'info' );
?>
<!--</div>-->
<!--</footer>-->
</div><!-- .site-content-contain -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>