-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
49 lines (43 loc) · 1.97 KB
/
footer.php
File metadata and controls
49 lines (43 loc) · 1.97 KB
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
43
44
45
46
47
48
49
<!-- Prefooter Section -->
<div class="py-4 border border-lighter border-bottom-0 border-left-0 border-right-0 bg-dark">
<div class="container">
<div class="row justify-content-between align-items-center text-center">
<div class="col-md-3 text-md-left mb-3 mb-md-0">
<img src="<?php bloginfo('template_directory'); ?>/assets/imgs/navbar-brand.svg" width="100" alt="alt text here..." class="mb-0">
</div>
<div class="col-md-9 text-md-right">
<!-- bottom nav menu -->
<?php wp_nav_menu(
array(
'theme_location' => 'bottom_menu',
'container' => "div",
'menu_class' => 'bottommenu',
)
);
?>
</div>
</div>
</div>
</div>
<!-- End of PreFooter Section -->
<!-- Page Footer -->
<footer class="border border-dark border-left-0 border-right-0 border-bottom-0 p-4 bg-dark">
<div class="container">
<div class="row align-items-center text-center text-md-left">
<div class="col">
<p class="mb-0 small">© <script>document.write(new Date().getFullYear())</script>, <a href="https://www.devcrud.com" target="_blank">DevCrud</a> All rights reserved </p>
</div>
<div class="d-none d-md-block">
<h6 class="small mb-0">
<a href="javascript:void(0)" class="px-2"><i class="ti-facebook"></i></a>
<a href="javascript:void(0)" class="px-2"><i class="ti-twitter"></i></a>
<a href="javascript:void(0)" class="px-2"><i class="ti-instagram"></i></a>
</h6>
</div>
</div>
</div>
</footer>
<!-- End of Page Footer -->
<?php wp_footer(); ?>
</body>
</html>