-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
66 lines (57 loc) · 2.31 KB
/
footer.php
File metadata and controls
66 lines (57 loc) · 2.31 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
<!-- BEGIN footer.php -->
<footer class="site-footer">
<div class="site-footer__inner container container--narrow">
<div class="group">
<div class="site-footer__col-one">
<a href="<?php echo site_url() ?>"><img src="<?php echo get_theme_file_uri('/images/logo.png') ?>" alt=""></a>
<p>Phone: 780-944-2699<br />Email: <a href="mailto:info@youcanride2.ca">info@youcanride2.ca</a></p>
</div>
<div class="site-footer__col-two-three-group">
<div class="site-footer__col-two">
<h3 class="headline headline--small">Explore</h3>
<nav class="nav-list">
<?php
wp_nav_menu( array(
'theme_location' => 'footer-navigation',
) );
?>
<!-- implemented dynamic navigation
<ul>
<li><a href="<?php echo site_url('/about-us') ?>">About Us</a></li>
<li><a href="#">Programs</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Volunteer</a></li>
</ul>
-->
</nav>
</div>
<div class="site-footer__col-three">
<!--
<h3 class="headline headline--small">Learn</h3>
<nav class="nav-list">
<ul>
<li><a href="#">Legal</a></li>
<li><a href="<?php echo site_url('/privacy-policy') ?>">Privacy</a></li>
<li><a href="#">Careers</a></li>
</ul>
</nav>
</div>
-->
</div>
<div class="site-footer__col-four">
<h3 class="headline headline--small">Connect With Us</h3>
<nav>
<ul class="min-list social-icons-list group">
<li><a href="https://www.facebook.com/YouCanRideTwo/" target="_blank" class="social-color-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/YouCanRideTwo" target="_blank" class="social-color-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/youcanride2/" target="_blank" class="social-color-instagram"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</nav>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>
<!-- END footer.php -->