-
Notifications
You must be signed in to change notification settings - Fork 3
/
footer.php
36 lines (35 loc) · 1.88 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
<?php
/*
================================================================================================
The template for displaying the footer. It contains the closing of the body all content
after and containing the bottom widget area
================================================================================================
@package Arlene
@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="row">
<div class="medium-6 large-6 columns">
<p class="copyright"><?php _e('Developed by ','arlene')?>Samuel Guebo.<br><a href="<?php echo esc_url( __( 'https://wordpress.org/', 'arlene' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'arlene' ), 'WordPress' ); ?></a> <?php _e('and available on','arlene')?> <a href="https://github.com/samuelguebo/arlene"><i class="fa fa-github"></i> Github</a>
</p><!-- copyright-->
</div>
<div class="medium-4 large-4 columns">
<?php get_search_form(); ?>
</div>
<div class="medium-2 large-2 columns socials right">
<?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>