-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
82 lines (73 loc) · 2.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/*
* The template for displaying the footer.
*
* @package Valhalla
* @subpackage Templates
*/
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Direct script access denied.' );
}
?>
<?php wp_footer(); ?>
<div class="container-fluid footer">
<div class="container-fluid footer-main-div">
<div class="container-fluid section-footer">
<div class="row">
<div id="footer-about" class="col-md">
<p class="footer-headings">
<?php echo esc_html( get_theme_mod( 'valhalla_footer_about_heading') ); ?>
</p>
<p class="footer-text">
<?php echo esc_html( get_theme_mod( 'valhalla_footer_about_text') ); ?>
</p>
</div>
<div id="footer-contact" class="col-md">
<p class="footer-headings">
<?php echo esc_html( get_theme_mod( 'valhalla_footer_contact_heading') ); ?>
</p>
<p class="footer-text"><i id="footer-phone" class="fas fa-lg fa-phone footer-icons"></i>
<?php echo esc_html( get_theme_mod( 'valhalla_footer_contact_phone') ); ?>
</p>
<p class="footer-text"><i id="footer-whatsapp" class="fa fa-lg fa-whatsapp footer-icons"></i>
<?php echo esc_html( get_theme_mod( 'valhalla_footer_contact_whatsapp') ); ?>
</p>
<p class="footer-text"><i id="footer-email" class="fa fa-lg fa-at footer-icons"></i>
<?php echo esc_html( get_theme_mod( 'valhalla_footer_contact_email') ); ?>
</p>
<p class="footer-text"><i id="footer-address" class="fa fa-lg fa-location-arrow footer-icons"></i>
<?php echo esc_html( get_theme_mod( 'valhalla_footer_contact_address') ); ?>
</p>
</div>
<div id="footer-social" class="col-md">
<p class="footer-headings">
<?php echo esc_html( get_theme_mod( 'valhalla_footer_social_heading') ); ?>
</p>
<p class="footer-text"><a href="<?php echo esc_url( get_theme_mod( 'valhalla_footer_social_twitter') ); ?>"><i id="footer-twitter" class="fa fa-lg fa-twitter footer-icons"></i> Twitter</a></p>
<p class="footer-text"><a href="<?php echo esc_url( get_theme_mod( 'valhalla_footer_social_facebook') ); ?>"><i id="footer-facebook" class="fa fa-lg fa-facebook footer-icons"></i> Facebook</a></p>
<p class="footer-text"><a href="<?php echo esc_url( get_theme_mod( 'valhalla_footer_social_instagram') ); ?>"><i id="footer-instagram" class="fa fa-lg fa-instagram footer-icons"></i> Instagram</a></p>
</div>
<?php if (is_active_sidebar('sidebar-2')) : ?>
<div id="footer-widget" class="col-md">
<div class="footer-sidebar">
<div id="sidebar">
<ul>
<?php dynamic_sidebar('sidebar-2'); ?>
</ul>
</div>
</div>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
<div class="container-fluid footer2">
<div class="container-fluid section-footer">
<p>©Copyright 2020 | Valhalla Theme <?php echo esc_html__('by', 'valhalla'); ?> Pierre Gabriel | <?php echo esc_html__('All Rights Reserved', 'valhalla'); ?>
</p>
</div>
</div>
</body>
</html>