-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
61 lines (50 loc) · 1.78 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
<?php
/**
* The template for displaying the footer
*
* Contains the opening of the #site-footer div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
* @subpackage Twenty_Twenty
* @since Twenty Twenty 1.0
*/
?>
<footer id="site-footer" role="contentinfo" class="header-footer-group">
<div class="section-inner">
<div class="footer-credits">
</div><!-- .footer-credits -->
</div><!-- .section-inner -->
<div class="swo-footer-wrap">
<div class="swo-footer">
<div class="footer-left">
Stiftung Wirtschaft und Ökologie<br/>
Bahnstrasse 18b<br/>
8603 Schwerzenbach
</div>
<div class="footer-logo"><img src="/wp-content/uploads/2020/06/SWO_straight-pdf (2).png"/></div>
<div class="footer-right">
Telefon: +41 43 355 58 44<br/>
E-Mail: swo@stiftungswo.ch<br/>
Web: www.stiftungswo.ch
</div>
</div>
<div class="footer-copyright">
© 2010 -
<?php
echo date_i18n(
/* translators: Copyright date format, see https://www.php.net/date */
_x( 'Y', 'copyright date format', 'swowptheme' )
);
?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
|<a href="/datenschutzerklaerung/">Unsere AGBs</a>
<!-- Credits NICHT entfernen, dies wurde so abgesprochen. Danke. Sie können mich hier konntaktieren: me@davidkessler.ch oder 076 308 42 22 -->
|<a target="_blank" href="https://davidkessler.ch">Entwicklung: davidkessler.ch</a>
</div>
</div>
</footer><!-- #site-footer -->
<?php wp_footer(); ?>
</body>
</html>