-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
98 lines (91 loc) · 4.72 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?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 _s
*/
/**
* Introduced in version 1.1
*/
// Echo count of items in menu
$footer_nav_menu = wp_get_nav_menu_object( 'Secondary Menu' )->count;
$nav_list = wp_nav_menu( array(
'theme_location' => 'menu-2',
'depth' => 1, // 1 = no dropdowns, 2 = with dropdowns.
'container' => false,
'menu_class' => 'footer-nav-bar',
'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback',
'walker' => new WP_Bootstrap_Navwalker(),
'echo' => false,
)
);
?>
<footer id="colophon" class="site-footer">
<div class="footer-sun"></div>
<!--Social buttons-->
<nav class="spi-social mx-2">
<div class="spi-social-list" style="margin-right:<?php echo round( 100 / ( $footer_nav_menu * 2 ) ); ?>vw ">
<p class="spi-social-item h3"style="margin-left:0;">
Follow Us
<i class="bi bi-chevron-compact-right h3"></i>
</p>
<p class="spi-social-item">
<a href="https://www.facebook.com/smartpower.in/" title="Facebook" target="_blank">
<i class="bi bi-facebook h3" style="color: #3b5998"></i>
</a>
</p>
<p class="spi-social-item">
<a href="https://www.linkedin.com/company/smart-powerindia/" title="Linkedin" target="_blank">
<i class="bi bi-linkedin h3" style="color: #0e76a8"></i>
</a>
</p>
<p class="spi-social-item">
<a href="https://twitter.com/smartpowerorg" title="Twitter" target="_blank">
<i class="bi bi-twitter h3" style="color: #00acee"></i>
</a>
</p>
<p class="spi-social-item">
<a href="https://www.youtube.com/c/SmartPowerIndia_SPI" title="Youtube" target="_blank">
<i class="bi bi-youtube h3" style="color: #FF0000"></i>
</a>
</p>
</div>
</nav>
<!--/.Social buttons-->
<hr class="bg-dark d-block d-md-none mx-2">
<!--Footer Links-->
<div class="row mx-2" style="z-index: 2">
<div class="row m-0 p-0">
<button class="spi-accordion h3 d-md-none m-0 p-0">All Links</button>
<!-- Getting Nav Item list for median and smaller screen size -->
<nav class="spi-panel" aria-label="footer navigation small screen">
<?php echo $nav_list ?>
</nav>
<!-- For the expanded condition -->
<nav class="d-none d-md-inline mt-3 spi-footer-nav" aria-label="footer navigation large screen" style="column-count:<?php echo $footer_nav_menu; ?>;">
<?php echo $nav_list ?>
</nav>
</div> <!--Footer Link End-->
<div class="footer-lower">
<i class="bi bi-envelope-fill text-primary fs-5 me-2"></i>
<a class="text-primary text-decoration-none" href="<?php echo esc_url( __( 'mailto:[email protected]', '_s' ) ); ?>">
<!-- translators: %s: CMS name, i.e. WordPress. -->
<?php echo esc_html__( '[email protected]', '_s' ); ?>
</a>
</div>
</div>
<!--Copyright-->
<div class="footer-copyright">
<!-- translators: %s: CMS name, i.e. WordPress. -->
<?php echo ( esc_html__('Copyright Smart Power India ©', '_s') . date( 'Y' ) . ' | All rights reserved' ); ?>
</div>
<!--/.Copyright-->
</footer> <!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>