-
Notifications
You must be signed in to change notification settings - Fork 4
/
footer.php
38 lines (36 loc) · 1.84 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
<?php
/*
================================================================================================
The template for displaying the footer. It contains the closing of the body all content
after and containing the bottom widget area
================================================================================================
@package Maria
@link https://developer.wordpress.org/themes/basics/template-files/#template-partials
@copyright Copyright (C) 2017. Samuel Guebo
@license GNU General Public License v2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
@author Samuel Guebo (http://samuelguebo.co/)
================================================================================================
*/
?>
<footer id="footer">
<div class="footer-bar parallax clearfix">
<?php dynamic_sidebar( 'footer-1' );?>
</div><!-- .footer-bar -->
<div class="main-row row">
<div class="small-12 medium-6 large-10 columns">
<p class="copyright"><?php _e('© ','maria')?> <?php echo get_the_date('Y'); ?> <?php echo bloginfo('name'); ?>
/ <?php _e('Developed by ','maria')?><a href="<?php echo esc_url( __( 'http://samuelguebo.co', 'maria' ) ); ?>">Samuel Guebo</a> ( <a href="https://github.com/samuelguebo/maria"><i class="fa fa-github"></i> <?php _e('source code','maria')?> </a>)
</p><!-- copyright-->
</div>
<div class="small-12 medium-6 large-2 columns socials">
<?php get_template_part('menu-social'); ?>
</div>
</div>
<div class="row back-to-top-wrapper">
<a href="#0" class="back-to-top" id="back-to-top"><i class="fa fa-angle-up"></i></a><!-- back to top-->
</div>
</footer>
<?php wp_footer(); ?>
</section><!-- .boxed-wrapper-->
</body>
</html>