-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·66 lines (51 loc) · 1.91 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package _tk
*/
?>
</div><!-- close .*-inner (main-content or sidebar, depending if sidebar is used) -->
</div><!-- close .row -->
</div><!-- close .container -->
<div class="push"></div>
</div><!-- close .main-content -->
<footer id="footer" class="site-footer" role="contentinfo">
<?php if ( ! listify_is_job_manager_archive() ) : ?>
<?php get_template_part( 'content', 'aso' ); ?>
<?php if ( is_active_sidebar( 'widget-area-footer-1' ) || is_active_sidebar( 'widget-area-footer-2' ) || is_active_sidebar( 'widget-area-footer-3' ) ) : ?>
<footer class="site-footer-widgets">
<div class="container">
<div class="row">
<div class="footer-widget-column col-xs-12 col-sm-12 col-lg-5">
<?php dynamic_sidebar( 'widget-area-footer-1' ); ?>
</div>
<div class="footer-widget-column col-xs-12 col-sm-6 col-lg-3 col-lg-offset-1">
<?php dynamic_sidebar( 'widget-area-footer-2' ); ?>
</div>
<div class="footer-widget-column col-xs-12 col-sm-6 col-lg-3">
<?php dynamic_sidebar( 'widget-area-footer-3' ); ?>
</div>
</div>
</div>
</footer>
<?php endif; ?>
<?php endif; ?>
<?php // substitute the class "container-fluid" below if you want a wider content area ?>
<div class="container-fluid">
<div class="row">
<div class="site-footer-inner col-sm-12">
<div class="site-info">
<?php do_action( '_tk_credits' ); ?>
<a href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', '_tk' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', '_tk' ), 'WordPress' ); ?></a>
</div><!-- close .site-info -->
</div>
</div>
</div><!-- close .container -->
</footer><!-- close #colophon -->
<div id="ajax-response"></div>
<?php wp_footer(); ?>
</body>
</html>