-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
42 lines (42 loc) · 1.61 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
41
42
<footer>
<div class="container">
<div class="top">
<div class="book">
<h4>Mental Wellness: A Spiritual Journey</h4>
<p>In this groundbreaking book, Dr. El-Rayes presents a program of systematic approach to help you heal from depression, anxiety, and addiction.</p>
<a href="#">Learn More</a>
</div>
<div class="newsletter">
<h4>Stay Connected</h4>
<p>Receive updates about the latest blog posts, webinars and events from HR Mental Wellness</p>
<input type="text" name="email" placeholder="Email Address">
<button>Subscribe</button>
</div>
<div class="contact">
<h4>Contact Us</h4>
<p><img src="<?= get_stylesheet_directory_uri() ?>/assets/icons/map-marker-alt-solid.svg"><?= get_theme_mod('street'); ?></p>
<p><img src="<?= get_stylesheet_directory_uri() ?>/assets/icons/phone-solid.svg"><?= get_theme_mod('phone'); ?></p>
<p>
<img src="<?= get_stylesheet_directory_uri() ?>/assets/icons/envelope-regular.svg">
<a href="#">Email</a>
</p>
</div>
<div class="explore">
<h4>Explore</h4>
<?php wp_nav_menu(array(
'menu_class' => 'footer-menu',
'container' => '',
'depth' => 1
)); ?>
</div>
</div>
<div class="copyrigh-wrapper">
<?php bloginfo('name'); ?> © 2020
</div><!--end .copyrigh-wrapper-->
</div><!--end .container-->
</footer><!--end #site-footer-->
</div><!--#end sitelayout-->
<?php wp_footer(); ?>
<script src="<?= get_stylesheet_directory_uri() ?>/assets/js/mobile-nav.js"></script>
</body>
</html>