-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
148 lines (140 loc) · 5.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php
/**
* The template for displaying the footer.
*
* Contains the social icons, site-footer, copyright
*
* @package soundboutiques
*/
?>
<section class="get-social text-white">
<div class="container-fluid">
<div class="row no-gutters">
<div class="col-md-3">
<a href="#">
<span class="ti-facebook"></span>
</a>
</div>
<div class="col-md-3">
<a href="#">
<span class="ti-youtube"></span>
</a>
</div>
<div class="col-md-3">
<a href="#">
<span class="ti-soundcloud"></span>
</a>
</div>
<div class="col-md-3">
<a href="#">
<span class="ti-instagram"></span>
</a>
</div>
</div>
</div>
</section>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<h6 class="footer-title">About us</h6>
<ul class="footer-list about">
<li class="list-group-item">
<a href="#" class="footer-logo">
<img class="" src="<?php echo get_template_directory_uri(); ?>/assets/images/soundboutiques-logo.png" alt="Sound Boutiques logo">
</a>
</li>
<li class="list-group-item">
<p>
<?php echo get_option('footer_about_us_text'); ?>
</p>
</li>
</ul>
</div>
<div class="col-md-2">
<h6 class="footer-title">Menus</h6>
<?php
wp_nav_menu(array(
'theme_location' => 'foot_one',
'container' => false,
'menu_class' => 'footer-list menus',
'add_li_class' => 'list-group-item'
// 'walker' => new Picklikeapro_Walker_Nav_Primary()
));
?>
</div>
<div class="col-md-3">
<h6 class="footer-title">Others</h6>
<?php
wp_nav_menu(array(
'theme_location' => 'foot_two',
'container' => false,
'menu_class' => 'footer-list menus',
'add_li_class' => 'list-group-item'
// 'walker' => new Picklikeapro_Walker_Nav_Primary()
));
?>
</div>
<div class="col-md-3">
<h6 class="footer-title">Payment options</h6>
<ul class="footer-list payment">
<li class="list-group-item">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/payment-logos.png" alt="">
</li>
</ul>
</div>
</div>
</div>
</footer>
<div class="copyright">
<div class="container-fluid">
<div class="row no-gutters">
<div class="col-12 text-center">
<p>Copyright © 2020 Soundboutiques. All rights reserved.</p>
</div>
</div>
</div>
</div>
<div class="notification">
<p class="message"></p>
</div>
<section class="track-player">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="player-wrapper d-flex align-items-center">
<div class="track-cover">
<img class="track-cover-image" src="<?php echo get_template_directory_uri(); ?>/assets/images/cards/sqr/cartoon-sqr-1.png" alt="Track cover image">
<div href="<?php echo get_template_directory_uri(); ?>/#" class="audio-triangle">
<span class="ti-control-play"></span>
</div>
</div>
<div class="track-info ml-3 mr-3">
<a href="#">
<h3 class="track-title">Future house genie</h3>
</a>
<a href="#">
<span class="track-category">Sound</span>
</a>
</div>
<div class="track-controls">
<!-- <span class="ti-control-play"></span> -->
</div>
<div id="waveform" class="track-waveform d-none d-sm-block">
<div class="loader-wrapper">
<div class="loader"></div>
</div>
</div>
<div class="action-buttons ml-auto">
<a class="cart-button" href="#">
<span class="price">---</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<?php wp_footer(); ?>
</body>
</html>