wordpress-theme-cbsonline/footer.php

90 lines
2.0 KiB
PHP
Raw Normal View History

2020-10-29 23:50:19 +09:00
<?php
/**
* The template for displaying the footer.
*/
?>
</div><!-- #main -->
<div id="back-top">
<a href="#wrap">
<img id="pagetop" src="<?php echo get_template_directory_uri(); ?>/js/res-vektor/images/footer_pagetop.png" alt="PAGETOP" />
</a>
</div>
<!-- [ #footerSection ] -->
<div id="footerSection">
<div id="pagetop">
<div id="pagetopInner" class="innerBox">
<a href="#wrap">PAGETOP</a>
</div>
</div>
<div id="footMenu">
<div id="footMenuInner" class="innerBox">
<?php wp_nav_menu( array(
'theme_location' => 'FooterNavi',
'fallback_cb' => ''
) ); ?>
</div>
</div>
<!-- [ #footer ] -->
<div id="footer">
<!-- [ #footerInner ] -->
<div id="footerInner" class="innerBox">
<!--
<dl id="footerOutline">
<dt><?php biz_vektor_footerSiteName(); ?></dt>
<dd>
<?php biz_vektor_print_footContact(); ?>
</dd>
</dl>
-->
<!-- [ #footerSiteMap ] -->
<div id="footerSiteMap">
<?php wp_nav_menu(
array(
'theme_location' => 'FooterSiteMap',
'fallback_cb' => ''
) ); ?>
</div>
<!-- [ /#footerSiteMap ] -->
</div>
<!-- [ /#footerInner ] -->
</div>
<!-- [ /#footer ] -->
<!-- [ #siteBottom ] -->
<div id="siteBottom">
<div id="siteBottomInner" class="innerBox">
<div id="copy">Copyright RIKEN, Japan. All rights reserved.</div>
</div>
</div>
<!-- [ /#siteBottom ] -->
</div>
<!-- [ /#footerSection ] -->
</div>
<!-- [ /#wrap ] -->
<?php wp_footer();?>
<script>
jQuery(window).load(function() {
jQuery('#topFreeArea').each(function(i, box) {
var maxHeight = 0;
jQuery(box).find('.topbox').each(function() {
if (jQuery(this).height() > maxHeight) maxHeight = jQuery(this).height();
});
jQuery(box).find('.topbox').height(maxHeight);
});
jQuery('#container').each(function(i, box) {
var maxHeight = 0;
jQuery(box).find('.side').each(function() {
if (jQuery(this).height() > maxHeight) maxHeight = jQuery(this).height();
});
jQuery(box).find('.side').height(maxHeight);
});
});
</script>
</body>
</html>