-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
52 lines (47 loc) · 2.56 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
51
52
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package The_Leader
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer bg-secondary color-white" role="contentinfo">
<div class="row with-gutter middle-lg align-c-xs align-c-sm align-c-md">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 last-xs first-sm first-md first-lg">
<div class="site-info small">
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'the_leader' ) ); ?>" class="display-inlineBlock"><?php printf( esc_html__( 'Proudly powered by %s', 'the_leader' ), 'WordPress' ); ?></a>
•
<?php printf( esc_html__( '"%1$s" by %2$s', 'the_leader' ), 'The Leader - Arena of creativity for authors', '<a href="https://injectthemes.com/" rel="designer" class="display-inlineBlock">Inject Themes</a>' ); ?>
</div>
</div><!-- .site-info -->
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<div class="site-socials">
<section class="widget social f-right">
<nav class="social">
<ul>
<li><a href="http://twitter.com/EckoThemes" target="_blank" title="Twitter" class="socialdark twitter"><i class="ti-twitter-alt"></i></a></li>
<li><a href="#" target="_blank" title="Facebook" class="socialdark facebook"><i class="ti-facebook"></i></a></li>
<li><a href="#" target="_blank" title="Github" class="socialdark github"><i class="ti-github"></i></a></li>
<li><a href="#" target="_blank" title="Youtube" class="socialdark youtube"><i class="ti-youtube"></i></a></li>
<li><a href="#" target="_blank" title="Dribbble" class="socialdark dribbble"><i class="ti-dribbble"></i></a></li>
<li><a href="#" target="_blank" title="Instagram" class="socialdark instagram"><i class="ti-instagram"></i></a></li>
<li><a href="#" target="_blank" title="Linkedin" class="socialdark linkedin"><i class="ti-linkedin"></i></a></li>
<li><a href="#" target="_blank" title="Pinterest" class="socialdark pinterest"><i class="ti-pinterest"></i></a></li>
<li><a href="#" target="_blank" title="Flickr" class="socialdark flickr"><i class="ti-flickr"></i></a></li>
<li><a href="#" target="_blank" title="Vimeo" class="socialdark vimeo"><i class="ti-vimeo"></i></a></li>
</ul>
</nav>
</section>
</div>
</div><!-- .footer-widgets -->
</div><!-- .row -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>