-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
41 lines (34 loc) · 1.44 KB
/
footer.php
File metadata and controls
41 lines (34 loc) · 1.44 KB
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" role="contentinfo">
<?php
/* A sidebar in the footer? Yep. You can can customize
* your footer with three columns of widgets.
*/
if ( ! is_404() )
get_sidebar( 'footer' );
?>
<div id="supplementary">
<?php do_action( 'twentyeleven_credits' ); ?>
<div>Copyright © <?php echo date('Y'); ?> <?php bloginfo( 'name' ); ?> | <a href="http://oit.ncsu.edu/itaccess/legislation-and-policies" target="_blank">Accessibility</a> | <a href="http://www.ncsu.edu/privacy/" target="_blank">Privacy</a> | <a href="http://policies.ncsu.edu/" target="_blank">University Policies</a> <!--| <a href="<?php //echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php //esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>" rel="generator"><?php //printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>--></div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
<script>
jQuery(document).ready(function(){
jQuery("body").prepend('<div class="skip-link"><a title="Skip to primary content" href="#content" class="assistive-text">Skip to primary content</a></div>')
});
</script>
</body>
</html>