-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
41 lines (37 loc) · 1.25 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
</div>
<div class="bg-black text-white">
<footer class="container mx-auto p-2 lg:p-0">
<div class="grid px-2 py-12 grid-cols-2 md:grid-cols-3 gap-3">
<?php if (check_menu_exists('footer-1')) : ?>
<div>
<div class="font-bold mb-2">Fique por dentro</div>
<ul>
<?php echo mazze_footer_menu('footer-1') ?>
</ul>
</div>
<?php endif; ?>
<?php if (check_menu_exists('footer-2')) : ?>
<div>
<div class="font-bold mb-2">Atalhos</div>
<ul>
<?php echo mazze_footer_menu('footer-2') ?>
</ul>
</div>
<?php endif; ?>
<div>
<div class="font-bold mb-2">Contatos</div>
<dl>
<dt>[email protected]</dt>
</dl>
</div>
</div>
<div class="flex justify-end py-6">
<a href="<?php echo home_url() ?>">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/logobranca.svg" alt="<?php echo bloginfo('name'); ?>" class="mr-12">
</a>
</div>
</footer>
</div>
<?php wp_footer(); ?>
</body>
</html>