-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
36 lines (29 loc) · 932 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
<?php
$site_url = get_site_url( $blog_id = null, $path = '', $scheme = null );
?>
<!--End of container-->
</div>
<!--End of container fluid-->
</div>
<!--Footer-->
<div class="container-fluid themell-bg1 pt-3 pb-3">
<div class="container">
<?php dynamic_sidebar('footer-1'); ?>
<div class="row">
<div class="col-12 col-md-6">
<p><a class="a-tx" href="<?php echo $site_url ?>/imprint">imprint</a><br>
<a class="a-tx" href="<?php echo $site_url ?>/privacy">privacy policy</a></p>
</div>
<div class="col-12 col-md-6 text-end">
<a class="a-tx" href="https://github.com/simon-eller/themell">© Themell 2021</a>
</div>
</div>
</div>
</div>
<!--End of Footer-->
<!-- Add Javascript -->
<?php
wp_footer();
?>
</body>
</html>