footer.php
3.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
/**
* Шаблон отображения подвала сайта
*
* @package WordPress
* @subpackage FenixMedicaCatheter
* @since 1.0.0
*/
?>
<!--Footer-->
<footer class="footer bg-custom-1 text-color-0">
<div class="container">
<div class="row d-md-none mob">
<div class="col-12">
<div class="text-center d-flex justify-content-between w-100 mb-4">
<button class="btn btn-lg btn-style-1 rounded-pill btn-phone" role="button" data-icon="phone"></button>
<a class="navbar-brand m-auto" href="<?php echo get_home_url(); ?>">
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/logo_footer.svg" alt="Fenix Medical Catheter" class="d-inline-block align-text-top img-fluid" />
</a>
<a href="#wrap" class="btn btn-lg btn-style-3 rounded-pill btn-up" role="button" data-icon="arrow_up"></a>
</div>
</div>
</div>
<div class="row d-md-none mob">
<div class="col-12 text-center">
<button class="btn btn-lg btn-style-0 btn-phone-number rounded-pill w-100 mb-4" role="button">+7 (8652) 22-25-09</button>
<?php
wp_nav_menu(
array(
'theme_location' => 'menu_down',
'menu_class' => 'navbar-nav mb-3',
'list_item_class' => 'nav-item',
'link_class' => 'nav-link',
'container' => false,
'echo' => true
)
);
?>
<div class="plus18 bg-custom-8 rounded-pill text-color-1 mx-auto mb-3">18+</div>
</div>
</div>
<div class="row d-none d-md-flex align-items-center mb-md-4">
<div class="col-3 p-0 text-start">
<a class="navbar-brand" href="<?php echo get_home_url(); ?>">
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/logo_footer.svg" alt="Fenix Medical Catheter" class="d-inline-block align-text-top img-fluid" />
</a>
</div>
<div class="col-6 p-0 text-center">
<?php
wp_nav_menu(
array(
'theme_location' => 'menu_down',
'menu_class' => 'navbar-nav flex-row justify-content-center',
'list_item_class' => 'nav-item',
'link_class' => 'nav-link',
'container' => false,
'echo' => true
)
);
?>
</div>
<div class="col-3 p-0 text-end">
<a href="tel:88652991199" class="btn btn-lg btn-style-0 rounded-pill me-4 d-inline-flex" role="button">+7 (8652) 22-25-09</a>
<button class="btn btn-lg btn-style-1 rounded-pill d-inline-block" role="button" data-icon="phone" data-bs-toggle="modal" data-bs-target="#backvoicesModal"></button>
</div>
</div>
<div class="row">
<div class="col-12 politica text-center">
<div class="mb-3">Ознакомьтесь с <a href="<?php echo get_permalink( get_page_by_path( 'privacy-policy' ) ); ?>">политикой конфиденциальности</a>.</div>
</div>
</div>
<div class="row d-none d-md-flex">
<div class="col-12 text-end p-0">
<div class="plus18 bg-custom-8 rounded-pill text-color-1 ms-auto">18+</div>
</div>
</div>
<div class="row">
<div class="col-12 license text-center">
© 2022 “Phenix Medica” Всеправазащищены.<br/> Информация на сайте носит ознакомительный характер и не является публичной офертой.
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>