-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
20 lines (20 loc) · 1018 Bytes
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<footer class="site-footer cebg-primary row m-0 p-0">
<div class="col-sm-4 my-2">
<?php if ( is_active_sidebar( 'footer-1' ) ) : ?> <?php dynamic_sidebar( 'footer-1' ); ?> <?php endif; ?>
</div>
<div class="col-sm-4 my-2">
<?php if ( is_active_sidebar( 'footer-2' ) ) : ?> <?php dynamic_sidebar( 'footer-2' ); ?> <?php endif; ?>
</div>
<div class="col-sm-4 my-2">
<?php if ( is_active_sidebar( 'footer-3' ) ) : ?> <?php dynamic_sidebar( 'footer-3' ); ?> <?php endif; ?>
</div>
<div class="col-sm-12 text-center mt-2">
<p>Tüm hakları saklıdır</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</body>
</html>