-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
50 lines (46 loc) · 1.51 KB
/
footer.php
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
46
47
48
49
50
<?php
/**
* Template for displaying the footer
*
* @link https://github.com/keitaroinc/keitaro-theme
*
* @package WordPress
* @subpackage Keitaro
*/
?>
<div class="footer-bg bg-white">
<div class="container-fluid">
<div class="row">
<div class="col-lg-10 offset-lg-1">
<hr>
<div class="content main-footer">
<div class="d-flex flex-wrap px-3">
<?php get_template_part( SNIPPETS_DIR . '/sidebars/footer-widgets' ); ?>
</div>
<?php $site_icon_url = get_site_icon_url( 128 ); ?>
<?php if ( $site_icon_url ) : ?>
<a href="<?php echo esc_url( home_url() ); ?>"><img class="keitaro-symbol" src="<?php echo esc_url( $site_icon_url ); ?>" alt="Keitaro"></a>
<?php endif; ?>
<div class="d-flex flex-wrap px-3">
<?php get_template_part( SNIPPETS_DIR . '/sidebars/social-media-widgets' ); ?>
</div>
<hr>
<div class="d-flex flex-wrap justify-content-between">
<?php get_template_part( SNIPPETS_DIR . '/navigation/footer-secondary-menu' ); ?>
<footer class="copyright">
<p>© <?php echo esc_html( gmdate( 'Y' ) ); ?> <a href="<?php echo esc_url( home_url() ); ?>"><?php bloginfo( 'name' ); ?></a>. <?php esc_html_e( 'Some rights reserved.', 'keitaro' ); ?></p>
</footer>
</div>
</div>
</div>
</div>
</div>
<?php wp_footer(); ?>
</div>
<?php
keitaro_go_to_top_link( __( 'Go to Top', 'keitaro' ) );
get_template_part( SNIPPETS_DIR . '/google-analytics' );
get_template_part( SNIPPETS_DIR . '/linkedin-partner' );
?>
</body>
</html>