-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
executable file
·50 lines (43 loc) · 1.6 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
<?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 uri-tedx
*/
?>
</div><!-- #content -->
<footer id="globalfooter">
<div class="content-width">
<div id="footer-content">
<ul id="footer-nav">
<li><a href="https://www.uri.edu/tedx/talks">Talks</a></li>
<li><a href="https://www.uri.edu/tedx/presenters">Presenters</a></li>
<li><a href="https://www.uri.edu/tedx/attend">Attend</a></li>
<li><a href="https://www.uri.edu/tedx/about">About</a></li>
<li><a href="https://www.ted.com/tedx">TEDx</a></li>
<li><a href="https://www.uri.edu/">uri.edu</a></li>
</ul>
<div id="footer-social">
<?php
if ( function_exists( 'uri_cl_shortcode_social' ) ) {
$facebook = 'https://www.facebook.com/profile.php?id=61555186445064';
$twitter = 'https://twitter.com/TEDxURI';
$youtube = 'https://www.youtube.com/channel/UCbhjVxILP8IBOVKsbo7kbnQ';
$linkedin = 'https://www.linkedin.com/company/tedxuri';
$instagram = 'https://www.instagram.com/tedxuri';
echo do_shortcode( '[cl-social style="light" facebook="' . $facebook . '" twitter="' . $twitter . '" youtube="' . $youtube . ' linkedin="' . $linkedin . '" instagram="' . $instagram . '"]' );
}
?>
</div>
</div>
<div id="disclaimer">This independent TEDx event is operated under license from TED.</div>
</div>
</footer><!-- #globalfooter -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>