-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
70 lines (46 loc) · 1.9 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after
*
* @package UnderStrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php get_template_part( 'sidebar-templates/sidebar', 'footerfull' ); ?>
<div class="news-area container">
<!-- <h1>News</h1>
--> <?php //echo sci_dis_news(); ?>
</div>
<div class="wrapper" id="wrapper-footer">
<div class="<?php echo esc_attr( $container ); ?>">
<div class="row">
<div class="col-md-12">
<footer class="site-footer" id="colophon">
<div class="row">
<div class="col-md-6 text-white">
<a href="https://www.vcu.edu/" title="footer link to VCU">
<h3>Virginia Commonwealth University</h3>
</a>
<a href="https://soe.vcu.edu/" title="Link to the VCU School of Education.">
<h4>School of Education</h4>
</a>
<p>1015 West Main Street<br>Box 842020<br>Richmond, VA 23284-2020</p>
</div>
<div class="col-md-6 text-white text-md-right">
<small>
<a href="https://www.vcu.edu/vcu/privacy-statement.html" title="VCU privacy statement" target="_blank">Privacy</a> | <a href="http://accessibility.vcu.edu/" title="Accessibility at VCU" target="_blank">Accessibility</a> | <a href="mailto:[email protected]" title="Contact the VCU webmaster" target="_blank">Webmaster</a></span></small>
</div>
</div>
</footer><!-- #colophon -->
</div><!--col end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- wrapper end -->
</div><!-- #page we need this extra closing tag here -->
<?php wp_footer(); ?>
</body>
</html>