-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
80 lines (65 loc) · 1.67 KB
/
footer.php
File metadata and controls
80 lines (65 loc) · 1.67 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
/**
* 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 slow_wheels
*/
?>
<footer class="sw__footer">
<div class="footer-header">
<div class="sponsors">
<h1>Our Friends and Sponsors</h1>
<?php slow_wheels_sponsor_logos(); ?>
</div>
</div>
<div class="footer__naviagtion">
<div class="useful-links">
<h3>Useful Links</h3>
<?php
wp_nav_menu(
array(
'theme_location' => 'useful-links',
'container_class' => 'footer__menu--highlight'
)
);
?>
</div>
<div class="downloadables">
<h3>Downloadable Content</h3>
<?php
wp_nav_menu(
array(
'theme_location' => 'downloadable-content',
'container_class' => 'footer__menu'
)
);
?>
</div>
<div class="">
<div class="sign__up">
<h3>Newsletter Sign Up</h3>
<?php echo do_shortcode('[sibwp_form id=1]'); ?>
</div>
</div>
</div>
<div class="site-info">
<p>© <?php echo get_bloginfo( 'name' ); ?> <?php echo date("Y"); ?> </p>
<p><a href="<?php echo get_site_url() ?>/privacy-policy/">Privacy</a> | <a href="<?php echo get_site_url() ?>/terms-and-conditions/">Terms</a></p>
<p><?php printf( esc_html__( '%1$s by %2$s.', 'slow-wheels' ), '<a href="https://github.com/madeslowly/slow-wheels">Slow Wheels</a>', '<a href="http://madeslowly.co.uk">Made Slowly</a>' ); ?>
</p>
</div><!-- .site-info -->
</footer><!-- .sw__footer -->
<?php wp_footer(); ?>
<script>
AOS.init({
duration: 600,
easing: 'ease-in-out-cubic',
disable: 'mobile'
});
</script>
</body>
</html>