-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
118 lines (90 loc) · 4.08 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
<?php
/**
* Template-Part: Footer
*
* @package Smartphoniker
* @since 1.0.0
*/
?>
</main>
<footer class="footer">
<div class="footer__wrapper">
<!-- Zahlungsmethoden -->
<ul class="footer__payments columns-9">
<?php foreach ( carbon_get_theme_option( 'payment_methods' ) as $payment_method_attachment_id ): ?>
<li class="columns-9__element">
<?php echo wp_get_attachment_image( $payment_method_attachment_id ); ?>
</li>
<?php endforeach; ?>
</ul>
<!-- Logo -->
<img
class="footer__logo"
src="<?php echo get_template_directory_uri(); ?>/assets/images/logo/logo_orangewhite.svg"
alt="Smartphoniker"
/>
<!-- Footer content -->
<div class="footer__content">
<!-- Über Uns -->
<div class="footer__block infoblock">
<p class="infoblock__heading">Über Uns</p>
<p class="infoblock__text"><?php echo carbon_get_theme_option( 'about' ); ?></p>
</div>
<!-- Kontaktiere Uns -->
<div class="footer__block infoblock">
<p class="infoblock__heading">Kontaktiere Uns</p>
<a class="infoblock__text infoblock__text--link" href="tel:+<?php echo carbon_get_theme_option( 'phone_number' ); ?>">
<?php echo carbon_get_theme_option( 'phone_number_show' ); ?>
</a>
<a class="infoblock__text infoblock__text--link" href="mail:<?php echo carbon_get_theme_option( 'email' ); ?>">
<?php echo carbon_get_theme_option( 'email' ); ?>
</a>
</div>
<!-- Hilfreiche Links -->
<div class="footer__block footer__block--small infoblock">
<p class="infoblock__heading">Hilfreiche Links</p>
<!-- Navigation Footer Links -->
<?php
wp_nav_menu( array(
'menu' => 'footer_links',
'container' => '',
'theme_location' => 'footer_links',
) );
?>
</div>
<!-- Informationen -->
<div class="footer__block footer__block--small infoblock">
<p class="infoblock__heading">Informationen</p>
<!-- Navigation Footer Legal -->
<?php
wp_nav_menu( array(
'menu' => 'footer_legal',
'container' => '',
'theme_location' => 'footer_legal',
) );
?>
</div>
</div>
<hr class="footer__line" />
<!-- Footer End -->
<div class="footer__end">
<!-- Footer social media -->
<div class="footer__socialmedia">
<a href="<?php echo carbon_get_theme_option( 'facebook_link' ); ?>" class="footer__socialicon">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/icons/facebook.svg" alt="facebook" />
</a>
<a href="<?php echo carbon_get_theme_option( 'instagram_link' ); ?>" class="footer__socialicon">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/icons/instagram.svg" alt="instagram" />
</a>
</div>
<!-- Footer credits -->
<div class="footer__credits">
Made by <a href="https://tobiaspoertner.com">Tobias</a>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</div> <!-- .wrapper -->
</body>
</html>