-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter-lp.php
33 lines (30 loc) · 918 Bytes
/
footer-lp.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
<?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 purdue-wp-theme
*/
?>
</div><!-- #content -->
<footer id="colophon" role="contentinfo" class="footer">
<div class="footer footer__global__logo">
<div class="container is-fullhd">
<?php
echo '<a href="' . esc_url(home_url('/')) . '" rel="home"><img src="https://www.purdue.edu/purdue/images/PU-H.svg" alt="Purdue Logo"></a>';
?>
</div>
</div>
<div class="footer footer__signature">
<div class="container is-fullhd">
© 2020 - <?php echo date('Y'); ?> Purdue University <?php purdueBrand_signatureLinks(); ?>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>