-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
139 lines (68 loc) · 3.07 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?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 WordPress
* @subpackage schoolsUOL
* @author Jez Thompson <[email protected]>
* @since 1.0
* @version 1.0
*/
?>
<?php schoolsUOL_content_bottom(); ?>
</div><!-- .sitebody-content -->
<?php schoolsUOL_content_after(); ?>
<footer class="site-footer">
<?php if ( is_active_sidebar( 'footer-left' ) || is_active_sidebar( 'footer-middle') ) : ?>
<div class="footer-top site-module">
<div class="module-inner-wrap">
<div class="columns-wrap flex-controlled">
<?php if ( is_active_sidebar( 'footer-left' ) ) : ?>
<div class="column-spacings column column--1-of-3 column--small-1-of-2">
<div class="widgets">
<?php dynamic_sidebar( 'footer-left' ); ?>
</div>
</div>
<?php endif; ?><!-- .footer-left -->
<?php if ( is_active_sidebar( 'footer-middle' ) ) : ?>
<div class="column-spacings column column--1-of-3 column--small-1-of-2">
<div class="widgets">
<?php dynamic_sidebar( 'footer-middle' ); ?>
</div><!-- .widgets -->
</div>
<?php endif; ?><!-- .footer-middle -->
<?php if ( is_active_sidebar( 'footer-right' ) ) : ?>
<div class="column-spacings column column--1-of-3 column--small-1-of-2">
<div class="widgets">
<?php dynamic_sidebar( 'footer-right' ); ?>
<!--Display Social Media List-->
<?php get_template_part( 'template-parts/site/social-media', 'icons' ); ?>
</div><!-- .widgets -->
</div> <!-- .footer-right -->
<?php endif; ?>
</div><!-- .footer -->
</div> <!--module-inner-wrap-->
</div> <!--footer-top-->
<?php endif; ?>
<div class="footer-top">
</div> <!-- footer-top -->
<div class="site-footer__bottom site-module">
<div class="module-inner-wrap flex-controlled">
<div class="credits-inner flex-column-end">
<p class="title"> <?php bloginfo( 'name' ); ?></p>
<?php university_links(); ?>
<p class="copy"> © University of Lincoln. All rights reserved</p>
</div> <!--credits-inner-->
<a class="site-footer__hero-logo flex-column-end" href="<?php echo esc_url('lincoln.ac.uk/home' ); ?>" rel="University Of Lincoln Logo" target="_blank" rel="noopener noreferrer">
<?php get_template_part( 'template-parts/site/uol-logo', 'portrait' ); ?>
</a>
</div> <!--module-inner-wrap-->
</div> <!-- footer-bottom -->
</footer> <!-- site-footer-->
<?php wp_footer(); ?>
</body>
</html>