-
Notifications
You must be signed in to change notification settings - Fork 4
/
footer.php
44 lines (37 loc) · 1.48 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
<?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 uw_wp_theme
*/
?>
<footer id="colophon" class="site-footer">
<a href="https://www.washington.edu/" class="footer-wordmark">University of Washington</a>
<a href="https://www.washington.edu/boundless/" class="be-boundless">Be boundless</a>
<div class="h4" id="social_preface">Connect with us:</div>
<nav aria-labelledby="social_preface">
<ul class="footer-social">
<li><a class="facebook" href="https://www.facebook.com/UofWA">Facebook</a></li>
<li><a class="twitter" href="https://twitter.com/UW">Twitter</a></li>
<li><a class="instagram" href="https://instagram.com/uofwa">Instagram</a></li>
<li><a class="youtube" href="https://www.youtube.com/user/uwhuskies">YouTube</a></li>
<li><a class="linkedin" href="https://www.linkedin.com/company/university-of-washington">LinkedIn</a></li>
<li><a class="pinterest" href="https://www.pinterest.com/uofwa/">Pinterest</a></li>
</ul>
</nav>
<nav aria-label="footer">
<?php uw_wp_theme_footer_menu(); ?>
</nav>
<div class="site-info">
<p>© <?php echo date( 'Y' ); ?> University of Washington | Seattle, WA</p>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page-inner -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>