-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
31 lines (27 loc) · 921 Bytes
/
footer.php
File metadata and controls
31 lines (27 loc) · 921 Bytes
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
</main>
<?php if (!is_page('contact')) { ?>
<div class="cta">
<div class="container">
<h1>Like what you see?</h1>
<p>Click the link below to get in touch with the team.</p>
<a href="<?php echo site_url('/contact'); ?>" class="button">Contact us</a>
</div>
</div>
<?php } ?>
<footer class="site-footer" role="contentinfo">
<div class="container">
<ul class="footer-links">
<li><a href="<?php echo site_url('/terms'); ?>"<?php echo (is_page('terms') ? 'class="active"' : ''); ?>>Terms</a></li>
<li><a href="<?php echo site_url('/privacy'); ?>"<?php echo (is_page('privacy') ? 'class="active"' : ''); ?>>Privacy</a></li>
</ul>
</div>
</footer>
<div class="copyright">
<div class="container">
© Bones <?php echo date('Y'); ?>. All Rights Reserved.
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>