-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
40 lines (34 loc) · 1.07 KB
/
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
40
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Atella_Studio
*/
?>
<footer id="colophon" class="site-footer mt-5 bg-black text-white py-3">
<div class="container">
<div class="row">
<div class="col-12 d-flex flex-column align-items-center">
<a href="#" class="site-footer__links text-white text-decoration-none py-2">How it Works</a>
<a href="#" class="site-footer__links text-white text-decoration-none py-2">Pricing</a>
<a href="#" class="btn btn-light btn-lg rounded-5 w-50 mt-2 text-black">Get Started</a>
</div>
</div>
<div class="row mt-4">
<div class="col-4">
<a href="#" class="text-white text-decoration-none">Privacy Policy</a>
</div>
<div class="col-8 d-flex justify-content-end">
<p>©2023 malkainhealth copy right</p>
</div>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>