-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
94 lines (82 loc) · 3.33 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after
*
* @package UnderStrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php get_template_part( 'sidebar-templates/sidebar', 'footerfull' ); ?>
<footer>
<div class="container footer-content">
<div class="row">
<div class="col-lg-3 col-md-4 d-flex flex-column align-items-start">
<img src="https://codely.ch/app/wp-content/uploads/2021/02/codely-w.svg" loading="lazy" alt="" class="logo-codely">
<p class="footer-text mb-0">Digital Excellence</p>
</div>
<div class="col-lg-3 col-md-4">
<strong class="footer-title d-block">Codely GmbH</strong>
<p class="footer-text mb-0">
Farbgutstrasse 3<br>
CH-9008 St.Gallen<br>
Schweiz<br>
<br>
<a href="tel:+41 71 571 37 22">+41 71 571 37 22</a><br>
<a href="mailto:[email protected]">[email protected]<br></a>
</p>
</div>
<div class="col-lg-3 col-md-4">
<strong class="footer-title d-block">Leistungen</strong>
<ul class="footer-list">
<li><a target="_blank" href="https://codely.ch/leistungen/">Webentwicklung</a></li>
<li><a target="_blank" href="https://codely.ch/leistungen/">E-Commerce</a></li>
<li><a target="_blank" href="https://codely.ch/leistungen/">Webapplikationen</a></li>
<li><a target="_blank" href="https://codely.ch/leistungen/">Data & Analytics</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-4">
<strong class="footer-title d-block">Follow us</strong>
<ul class="footer-list">
<li><a target="_blank" href="https://www.linkedin.com/company/codely-gmbh/">LinkedIn</a></li>
<li><a target="_blank" href="https://web.facebook.com/Codely-101424375352629">Facebook</a></li>
</ul>
</div>
</div>
</div>
<div class="container footer-legal">
<div class="row">
<div class="col-lg-6">
<p class="footer-text copyright mb-0">© 2021 Codely GmbH - All rights reserved.</p>
</div>
<div class="footer-text col-lg-6">
<?php
wp_nav_menu(
array(
'theme_location' => 'footer-menu',
'container_class' => 'd-md-block',
'container_id' => '',
'menu_class' => 'n-footer',
'fallback_cb' => '',
'menu_id' => 'footer-menu',
'depth' => 1,
'walker' => new Understrap_WP_Bootstrap_Navwalker(),
)
);
?>
</div>
</div>
</div>
</footer>
<button class="call-to-action-button">
<div class="call-to-action-text">
Kontaktieren Sie uns
</div>
</button>
</div><!-- #page we need this extra closing tag here -->
<?php wp_footer(); ?>
</body>
</html>