forked from kushinauwu/OBF-Homepage-New
-
Notifications
You must be signed in to change notification settings - Fork 10
/
footer.php
32 lines (27 loc) · 839 Bytes
/
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
<footer>
<section class="footer-section">
<div class="container">
<?php if ( is_active_sidebar( 'footer-links' ) ) : ?>
<?php dynamic_sidebar( 'footer-links' ); ?>
<?php endif; ?>
</div>
</section>
<section class="footer-logo">
<div class="container">
<div class="row">
<div class="col-sm-4 col-sm-offset-4">
<a href="<?php echo home_url(); ?>">
<img src="<?php echo get_bloginfo('template_url') ?>/img/logos/obf-logo.png" width=300px>
</a>
</div>
</div>
</div>
</section>
<?php if ( is_active_sidebar( 'footer-credits' ) ) : ?>
<?php dynamic_sidebar( 'footer-credits' ); ?>
<?php endif; ?>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>