-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.php
54 lines (51 loc) · 1.42 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
<?php
/**
* Theme Footer Section for our theme.
*
* Displays all of the footer section and closing of the #page div.
*
* @package ThemeGrill
* @subpackage Masonic
* @since 1.0
*/
?>
</div><!-- #page -->
<footer class="footer-background">
<div class="footer-content wrapper clear">
<div class="clear">
<?php if (is_active_sidebar('footer-sidebar-one')) { ?>
<div class="tg-one-third">
<?php
dynamic_sidebar('footer-sidebar-one');
?>
</div>
<?php } ?>
<?php if (is_active_sidebar('footer-sidebar-two')) { ?>
<div class="tg-one-third">
<?php
dynamic_sidebar('footer-sidebar-two');
?>
</div>
<?php } ?>
<?php if (is_active_sidebar('footer-sidebar-three')) { ?>
<div class="tg-one-third last">
<?php
dynamic_sidebar('footer-sidebar-three');
?>
</div>
<?php } ?>
</div>
<div class="copyright clear">
<div class="copyright-header"><?php echo bloginfo('name'); ?></div>
<div class="copyright-year"><?php
_e('© ', 'masonic');
echo date('Y');
?></div>
<?php masonic_footer_copyright(); ?>
</div>
</div>
<div class="angled-background"></div>
</footer>
<?php wp_footer(); ?>
</body>
</html>