mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
34 lines
847 B
PHP
34 lines
847 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The template for displaying the footer.
|
||
|
*
|
||
|
* Contains the closing of the id=main div and all content after
|
||
|
*
|
||
|
* @package WordPress
|
||
|
* @subpackage Fruitful theme
|
||
|
* @since Fruitful theme 1.0
|
||
|
*/
|
||
|
?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div><!-- .page-container-->
|
||
|
<footer id="colophon" class="site-footer" role="contentinfo">
|
||
|
<div class="container">
|
||
|
<div class="sixteen columns">
|
||
|
<div class="site-info">
|
||
|
<?php fruitful_get_footer_text(); ?>
|
||
|
</div><!-- .site-info -->
|
||
|
<?php if (!fruitful_is_social_header()) {
|
||
|
fruitful_get_socials_icon();
|
||
|
}
|
||
|
?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="back-top">
|
||
|
<a rel="nofollow" href="#top" title="Back to top">↑</a>
|
||
|
</div>
|
||
|
</footer><!-- #colophon .site-footer -->
|
||
|
<!--WordPress Development by Fruitful Code-->
|
||
|
<?php wp_footer(); ?>
|
||
|
</body>
|
||
|
</html>
|