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
42
43
44
45<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "body-content-wrapper" div and all content after.
*
* @subpackage fGeek
* @author tishonator
* @since fGeek 1.0.0
*
*/
?>
<a href="#" class="scrollup"></a>
<footer id="footer-main">
<div id="footer-content-wrapper">
<?php get_sidebar('footer'); ?>
<div class="clear">
</div>
<div id="copyright">
<p>
<?php fgeek_show_copyright_text(); ?>
<a href="<?php echo esc_url( 'https://tishonator.com/product/fgeek' ); ?>" title="<?php esc_attr_e( 'fgeek Theme', 'fgeek' ); ?>"><?php _e('fGeek Theme', 'fgeek'); ?></a>
<span class="footer-wp-attr">
<?php esc_attr_e( 'powered by', 'fgeek' ); ?>
<a href="<?php echo esc_url( 'http://wordpress.org/' ); ?>" title="<?php esc_attr_e( 'WordPress', 'fgeek' ); ?>"><?php _e('WordPress', 'fgeek'); ?></a>
</span>
</p>
</div><!-- #copyright -->
</div><!-- #footer-content-wrapper -->
</footer><!-- #footer-main -->
</div><!-- #body-content-wrapper -->
<?php wp_footer(); ?>
</body>
</html>