-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
26 lines (22 loc) · 811 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
<div class="container">
<hr>
<footer>
<div class="row">
<?php if ( is_active_sidebar( 'footer' ) ) : ?>
<?php dynamic_sidebar( 'footer' ); ?>
<?php endif; ?>
</div>
<div class="row">
<div class="col-lg-12">
<p>Copyright © Company 2013</p>
</div>
</div>
</footer>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/bootstrap.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/modern-business.js"></script>
</body>
</html>