forked from argoproject/Argo
-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
footer.php
73 lines (60 loc) · 1.35 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the id=main and id=page divs and all content after.
*
* @package Largo
* @since 0.1
*/
?>
</div> <!-- #main -->
</div><!-- #page -->
<?php
if ( is_active_sidebar( 'before-footer' ) ) {
get_template_part( 'partials/footer', 'before-footer-widget-area' );
}
/**
* Fires before the Largo footer content.
*
* @since 0.4
*/
do_action( 'largo_before_footer' );
?>
<div class="footer-bg clearfix nocontent">
<footer id="site-footer">
<?php
/**
* Fires before the Largo footer widgets appear.
*
* @since 0.4
*/
do_action( 'largo_before_footer_widgets' );
get_template_part( 'partials/footer', 'widget-area' );
/**
* Fires before the Largo footer boilerplate content.
*
* @since 0.4
*/
do_action( 'largo_before_footer_boilerplate' );
get_template_part( 'partials/footer', 'boilerplate' );
/**
* Fires just before the Largo footer content ends.
*
* @since 0.4
*/
do_action( 'largo_before_footer_close' );
?>
</footer>
</div>
<?php
/**
* Fires after the Largo footer content.
*
* @since 0.4
*/
do_action( 'largo_after_footer' );
wp_footer();
?>
</body>
</html>