-
Notifications
You must be signed in to change notification settings - Fork 6
/
footer.php
42 lines (35 loc) · 1.14 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
</div><!-- #main -->
</div>
<div class="col-sm-3">
<?php get_sidebar( 'primary' ); // Loads the sidebar-primary.php template. ?>
<?php get_sidebar( 'secondary' ); // Loads the sidebar-secondary.php template. ?>
</div>
</div>
<?php get_template_part( 'menu', 'subsidiary' ); // Loads the menu-subsidiary.php template. ?>
</div><!-- #container -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-sm-12">
<?php get_sidebar( 'subsidiary' ); // Loads the sidebar-subsidiary.php template. ?>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="menu-secondary">
<?php get_template_part( 'menu', 'secondary' ); // Loads the menu-secondary.php template. ?>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="footer-content">
<?php echo apply_atomic_shortcode( 'footer_content', '<p class="credit">' . __( '[the-year] [site-link]. ') . '</p>' ); ?>
</div><!-- .footer-content -->
</div>
</div>
</div>
</footer><!-- #footer -->
<?php wp_footer(); // wp_footer ?>
</body>
</html>