-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
100 lines (90 loc) · 3.64 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Quest
*/
/**
* Filter Footer container class
*/
$footer_container_cls = apply_filters( 'quest_footer_container_cls', 'container' );
?>
<?php if ( is_active_sidebar( 'footer-widget' ) ) : ?>
<footer class="quest-row main-footer">
<div class="<?php echo $footer_container_cls; ?>">
<div class="row">
<?php dynamic_sidebar( 'footer-widget' ); ?>
</div>
</div>
</footer>
<?php endif; ?>
<div class="custom-footer">
<div class="container">
<div class="row">
<div class="col-sm-12">
<p>This project was created using the
<a href="http://dsg.neu.edu/drs-project-toolkit/" target="_blank">CERES: Exhibit Toolkit</a>
with help from the <a href="http://dsg.neu.edu" target="_blank">Digital Scholarship Group</a>
at the <a href="http://library.northeastern.edu" target="_blank">Northeastern University Library</a>.
</p>
</div>
</div>
</div>
</div>
<footer id="colophon" class="copyright quest-row" role="contentinfo">
<div class="<?php echo $footer_container_cls; ?>">
<div class="row">
<div class="col-md-12 copyright-text">
<div class="col-md-3">
<a alt="Northeastern University" class="northeastern-logo" href="http://www.northeastern.edu">
<span class="sr-only">Northeastern University</span>
</a>
</div>
<div class="col-md-7">
<ul class="nav nav-pills">
<li><a href="https://my.northeastern.edu/" target="_blank">myNortheastern</a></li>
<li><a href="https://prod-web.neu.edu/webapp6/employeelookup/public/main.action" target="_blank">Find Faculty & Staff</a></li>
<li><a href="http://www.northeastern.edu/neuhome/adminlinks/findaz.html" target="_blank">Find A-Z</a></li>
<li><a href="http://www.northeastern.edu/emergency/index.html" target="_blank">Emergency Information</a></li>
<li><a href="http://www.northeastern.edu/search/index.html" target="_blank">Search</a></li>
</ul>
<address>360 Huntington Ave., Boston, Massachusetts 02115 · 617.373.2000 · TTY 617.373.3768<br>
<span class="fa fa-copyright"></span> <?php echo date('Y');?> Northeastern University
</address>
</div>
<div class="col-md-2">
<ul class="nu-social">
<li>
<a class="youtube" href="https://www.youtube.com/northeastern" target="_blank">
<span class="sr-only">Northeastern University on YouTube</span>
<span aria-hidden="" class="fa fa-youtube"></span>
</a>
</li>
<li>
<a class="twitter" href="http://twitter.com/northeastern" target="_blank">
<span class="sr-only">Northeastern University on Twitter</span>
<span aria-hidden="" class="fa fa-twitter"></span>
</a>
</li>
<li>
<a class="facebook" href="http://www.facebook.com/northeastern" target="_blank">
<span class="sr-only">Northeastern on Facebook</span>
<span aria-hidden="" class="fa fa-facebook"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</footer> <!-- end quest-row -->
</div><!-- #page -->
<?php wp_footer(); ?>
<a href="#0" class="cd-top" title="Back to top"><i class="fa fa-angle-up"></i><span class="sr-only">Back to top</span></a>
<?php get_footer('additions'); ?>
</body>
</html>