-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·39 lines (29 loc) · 940 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
33
34
35
36
37
38
39
</section>
<!-- End of content -->
<?php $footer = get_option( 'bloodhound_footer' ); ?>
<section id="footer">
<div class="container">
<div class="row">
<div class="col3 footer-a footer">
<?php dynamic_sidebar('bloodhound-footer-a'); ?>
</div>
<div class="col3 footer-b footer">
<?php dynamic_sidebar('bloodhound-footer-b'); ?>
</div>
<div class="col3 footer-c footer">
<?php dynamic_sidebar('bloodhound-footer-c'); ?>
</div>
</div>
</div>
</section>
<div class="copyright">
<div class="container row">
<?php if( $footer['copyright'] = 'copyright' ) : ?>
<span class="span6 left">© Copyright <?php echo date('Y'), $footer['copyright']; ?></span>
<?php endif; ?>
<?php if( $footer['powered_by'] ) : ?>
<span class="span6 right">Developed by <a href="http://vallgroup.com" target="_blank">Vallgroup LLC</a></span>
<?php endif; ?>
</div>
</div>
<?php wp_footer(); ?>