Skip to content
Permalink
6d64804f8b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
65 lines (59 sloc) 1.8 KB
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package cornerstone
*/
?>
</div><!-- .container-->
</div><!-- #content -->
<div id="footers">
<div id="mega-footer">
<div class="container">
<div class="col-sm-6">
<?php ( is_active_sidebar('footer-left') ? dynamic_sidebar('footer-left'): '' ); ?>
</div>
<div class="col-sm-3">
<?php ( is_active_sidebar('footer-center') ? dynamic_sidebar('footer-center'): '' ); ?>
</div>
<div class="col-sm-3">
<?php ( is_active_sidebar('footer-right') ? dynamic_sidebar('footer-right'): '' ); ?>
</div>
</div>
</div>
<footer id="footer" class="site-footer" role="contentinfo">
<div class="container">
<ul id="uc-footer-links" class="clearfix">
<li>
&copy; <a href="http://uconn.edu">University of Connecticut</a>
</li>
<li>
<a href="http://uconn.edu/disclaimers-privacy-copyright/">Disclaimers, Privacy &amp; Copyright</a>
</li>
<li>
<a href="<?php echo site_url(); ?>/wp-admin/">Webmaster Login</a>
</li>
<?php
// Only display the footer if a menu of "Footer" exists in the site.
if (wp_get_nav_menu_object('Footer')){
$defaults = array(
'menu' => 'Footer',
'container' => false,
'items_wrap' => '%3$s',
'depth' => 1,
'fallback_cb' => false
);
wp_nav_menu( $defaults );
}
?>
</ul>
</div>
</footer>
</div><!-- #footers -->
</div><!-- #page -->
<!--[if lte IE 9]></div><![endif]-->
<?php wp_footer(); ?>
</body>
</html>