-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter-2.php
142 lines (96 loc) · 3.36 KB
/
footer-2.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?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">
<h2 class="footer-title">Recruiting Starts Here ...</h2>
</section>
<div class="container widgets_wrapper mt-5">
<div class="footer-flex-container">
<div class="footer-flex-item footer-flex-col-1">
<?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="footer-flex-item footer-flex-col-2">
<?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="footer-flex-item footer-flex-col-3">
<?php
if ( ! is_active_sidebar( 'footer-sidebar-3' ) ) {
echo "Please Insert A Widget";
}
?>
<aside id="footer-widget-2" class="widget-area">
<?php dynamic_sidebar( 'footer-sidebar-3' ); ?>
</aside><!-- #secondary -->
</div>
<div class="footer-flex-item footer-flex-col-4">
<?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 class="footer-flex-item footer-flex-col-5">
<?php
if ( ! is_active_sidebar( 'footer-sidebar-5' ) ) {
echo "Please Insert A Widget";
}
?>
<aside id="footer-widget-5" class="widget-area">
<?php dynamic_sidebar( 'footer-sidebar-5' ); ?>
</aside><!-- #secondary -->
</div>
</div> <!-- END ROW -->
</div> <!-- END WIDGET WRAPPER -->
<section class="site-info">
<hr>
<div class="ml-md-5 widgets_wrapper">
<div class="copyright">
<div class="float-left">
<?php the_field('theme_footer_text', 'option') ?>
</div>
<div class="footer-old-logo float-right">
<img class="w-25" src="/wp-content/uploads/asm-old-footer-logo-300px.png" alt="">
</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>