forked from SayflyAM/Amir-Travel-Europe---Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
31 lines (30 loc) · 1.35 KB
/
footer.php
File metadata and controls
31 lines (30 loc) · 1.35 KB
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Travel Tour
*/
$footer_color = get_theme_mod( 'footer_color', '#383a42' );
?>
<footer class="py-48 px-0 text-light mt-64" style="background-color: <?php esc_html_e($footer_color); ?>;">
<div class="container-xl">
<?php travel_tour_footer_widgets(); ?>
</div>
</footer>
<div class="copyright text-center my-20 mx-0">
<?php $copyright = get_theme_mod( 'copyright_text', '' ); ?>
<p>
<span class="lh-base"><?php echo wp_kses_post( $copyright ); ?></span>
<?php if ( fs_travel_tour()->is_free_plan() ) : ?>
| <?php esc_html_e( "Powered by", 'travel-tour' ); ?> <a href="<?php echo esc_url( __( 'https://wordpress.org', 'travel-tour' ) ); ?>"><?php esc_html_e( "WordPress", 'travel-tour' ); ?></a> | <?php esc_html_e( 'Theme by', 'travel-tour' ); ?> <a href="<?php echo esc_url( 'https://thebootstrapthemes.com/' ); ?>"><?php esc_html_e( 'TheBootstrapThemes','travel-tour' );?></a>
<?php endif; ?>
</p>
</div>
<div class="scroll-top-wrapper position-fixed bottom-30 end-30 w-48 h-48 d-inline-flex justify-content-center align-items-center text-center rounded-circle bg-primary cursor-pointer z-100">
<span class="fs-5 lh-1 text-light"><i class="fa fa-angle-up"></i></span>
</div>
<?php wp_footer(); ?>
</body>
</html>