-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
36 lines (31 loc) · 790 Bytes
/
footer.php
File metadata and controls
36 lines (31 loc) · 790 Bytes
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
<footer id="footer">
<div class="container">
<div class="row ">
<div id="footer_left" class="col-sm-6">
<div id="copyright_text">
<span class="copyright-legal">
</span>
</div> <!-- end of copyright -->
</div>
<div id="footer_right_center" class="col-sm-6">
<div class="socials-links">
</div>
</div>
</div>
</div>
</footer> <!-- end of footer -->
<?php
// $to_top = codexin_get_option( 'cx_totop' );
$to_top = true;
if ( $to_top ) {
echo '<!-- Go to Top Button at right bottom of the window screen -->';
echo '<div id="toTop">';
echo '<i class="fa fa-chevron-up"></i>';
echo '</div>';
echo '<!-- Go to Top Button finished-->';
}
?>
</div> <!-- end of #whole -->
<?php wp_footer(); ?>
</body>
</html>