-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
83 lines (76 loc) · 3.03 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
<footer class="footer">
<div class="footer__content">
<ul class="footer__box footer__categories">
<?php
foreach ($footer_1_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<ul class="footer__box footer__categories">
<?php
foreach ($footer_2_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<ul class="footer__box footer__categories">
<?php
foreach ($footer_3_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<ul class="footer__box footer__categories">
<?php
foreach ($footer_4_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<ul class="footer__box">
</ul>
<ul class="footer__box footer__categories">
<?php
foreach ($footer_5_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<ul class="footer__box footer__categories">
<?php
foreach ($footer_6_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<ul class="footer__box footer__categories">
<?php
foreach ($footer_7_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<div class="footer__box footer__box--wide mrgTop">
<hr/>
<div class="site-branding">
<img src="assets/images/logo.png" alt="ANTIQLOG.">
</div>
</div>
<ul class="footer__box footer__box--wide footer__box--inline footer__box--uppercase mrgTop">
<?php
foreach ($footer_nav_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
<ul class="footer__box footer__box--wide footer__box--inline mrgTop">
<li>Copyright © <?php print_r(date('Y')); ?> ANTIQLOG. </li>
<?php
foreach ($footer_disclaimer_menu as $items => $items_value) {
echo "<li><a href='#' title='". $items_value ."'>". $items_value ."</a></li>";
}
?>
</ul>
</div>
</footer>