-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter-1.php
126 lines (84 loc) · 3.01 KB
/
footer-1.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?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 Moose_Framework_2
*/
?>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
</div><!-- #content -->
<footer id="footer-asm" class="site-footer">
<section class="footer-header text-center">
<!-- <img src="/wp-content/themes/asm-buddypress-cyberize/assets/img/ASM-logo.png" alt=""> -->
<img src="<?php echo get_template_directory_uri(); ?>/assets/img/ASM-logo.png" alt="">
<h2 class="footer-title">Recruiting Starts Here ...</h2>
</section>
<div class="container widgets_wrapper mt-5">
<div class="row">
<div class="col-12 col-sm-12 col-md-6 col-lg-3">
<?php
if ( ! is_active_sidebar( 'footer-sidebar-1' ) ) {
echo "Please Insert A Widget";
}
?>
<aside id="footer-widget-1" class="widget-area">
<?php dynamic_sidebar( 'footer-sidebar-1' ); ?>
</aside><!-- #secondary -->
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-3">
<?php
if ( ! is_active_sidebar( 'footer-sidebar-2' ) ) {
echo "Please Insert A Widget";
}
?>
<aside id="footer-widget-2" class="widget-area">
<?php dynamic_sidebar( 'footer-sidebar-2' ); ?>
</aside><!-- #secondary -->
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-3">
<?php
if ( ! is_active_sidebar( 'footer-sidebar-3' ) ) {
echo "Please Insert A Widget";
}
?>
<aside id="footer-widget-3" class="widget-area">
<?php dynamic_sidebar( 'footer-sidebar-3' ); ?>
</aside><!-- #secondary -->
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-3">
<?php
if ( ! is_active_sidebar( 'footer-sidebar-4' ) ) {
echo "Please Insert A Widget";
}
?>
<aside id="footer-widget-4" class="widget-area">
<?php dynamic_sidebar( 'footer-sidebar-4' ); ?>
</aside><!-- #secondary -->
</div>
</div> <!-- END ROW -->
</div> <!-- END WIDGET WRAPPER -->
<section class="site-info">
<div class="ml-md-5 widgets_wrapper">
<div class="copyright">
<div class="mx-auto">
<?php the_field('theme_footer_text', 'option') ?>
</div>
</div>
</div>
</section>
<!--==============================================================================
= THIS IS FOR DEBUGGING. PLZ DISABLE WHEN READY TO PUBLISH =
===============================================================================-->
<div style="color: dodgerblue"><strong>Current template:</strong>
<?php echo get_current_template( true ); ?>
</div>
<!-- ==== End of THIS IS FOR DEBUGGING. PLZ DISABLE WHEN READY TO PUBLISH ==== -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>