This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
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?
hri/footer.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
98 lines (62 sloc)
3.25 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="uc-footer"> | |
<div class="container"> | |
<div class="row footer-row"> | |
<div class="span3"> | |
<ul> | |
<li class="text-gold"><strong>HUMAN RIGHTS INSTITUTE</strong></li> | |
<li>University of Connecticut</li> | |
<li>Thomas J. Dodd Research Center</li> | |
<li>405 Babbidge Road</li> | |
<li>U-1205 Storrs, CT</li> | |
<li>06269 - USA</li> | |
</ul> | |
<div class="vr"></div> | |
</div> | |
<div class="span3 pad-left"> | |
<ul> | |
<li class="text-gold"><strong>SEND US AN EMAIL:</strong></li> | |
<li><a class="text-light-grey" href="mailto:humanrights@uconn.edu">Humanrights@uconn.edu</a></li> | |
<li> </li> | |
<li class="text-gold"><strong>OR CONTACT US AT:</strong></li> | |
<li>Tel: (860) 486-8739</li> | |
<li>Fax: (860) 486-6332</li> | |
</ul> | |
</div> | |
<div class="span3 footer-login"> | |
<ul> | |
<li><a href="<?php echo site_url(); ?>/wp-admin/"><img src="<?php bloginfo('template_url'); ?>/img/webmaster-login.png" alt="webmaster login button" onMouseOver="this.src='<?php bloginfo('template_url'); ?>/img/webmaster-login-rollover.png'" onMouseOut="this.src='<?php bloginfo('template_url'); ?>/img/webmaster-login.png'"/></a></li> | |
<li> <a class="text-gold" href="http://uconn.edu"><strong>© University of Connecticut</strong></a></li> | |
</ul> | |
</div> | |
<div class="span3 footer-right"> | |
<ul> | |
<li><p>Images found on this site are for Academic Research only and may not be copied or reproduced for any other purposes.</p></li> | |
<li> </li> | |
<li><a class="text-gold" href="http://uconn.edu/disclaimers-and-copyrights.php"><strong>Disclaimers, Privacy & Copyright</strong></a></li> | |
</ul> | |
</div> | |
</div> | |
<!-- <ul id="uc-footer-links" class="clearfix"> | |
<li> | |
© <a href="http://uconn.edu">University of Connecticut</a> | |
</li> | |
<li> | |
<a href="http://uconn.edu/disclaimers-and-copyrights.php">Disclaimers, Privacy & Copyright</a> | |
</li> | |
<li> | |
</li> | |
<?php | |
$defaults = array( | |
'menu' => 'Footer', | |
'container' => false, | |
'fallback_cb' => false, | |
'items_wrap' => '%3$s' | |
); | |
wp_nav_menu( $defaults ); | |
?> | |
</ul> --> | |
</div> | |
</div> | |
<?php wp_footer();?> | |
</body> | |
</html> |