forked from olefredrik/FoundationPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·143 lines (122 loc) · 4.29 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "off-canvas-wrap" div and all content after.
*
* @package WordPress
* @subpackage FoundationPress
* @since FoundationPress 1.0.0
*/
?>
</section>
<div class="row expanded donation-request">
<div class="row small-12 columns">
Unterstützen Sie unsere Arbeit mit einer Spende.
<p><a href="#" title="Jetzt Spenden" class="button white-ghost">Jetzt Spenden</a></p>
</div>
</div>
<div id="footer-container">
<footer id="footer">
<?php do_action( 'foundationpress_before_footer' ); ?>
<div class="small-up-1 medium-up-2 large-up-4">
<div class="column">
<div class="logo-wrapper">
<a href="http://www.ermekeilkarree.de/"><img src="/wp-content/themes/FoundationPress/assets/images/Ermekeilinitiative-Logo-2x.png" alt="Ermekeilinitiative e. V." class="logo" /></a>
</div>
<p>
<strong>Ermekeilinitiative e. V.</strong><br />
Initiative zur zivilen Nutzung<br />
der Bonner Ermekeilkaserne
<p>
Ermekeilstraße 27<br />
53115 Bonn
</p>
<p>
Tel.: 0228 / 69 22 55<br />
Fax: 0228 / 69 29 06<br />
</p>
<p>
E-Mail: [email protected]
</p>
</div>
<div class="column">
<ul>
<li><a href="#"><strong>Initiative</strong></a></li>
<li><a href="#">Unser Vorstand</a></li>
<li><a href="#">Unsere Satzung</a></li>
<li><a href="#">Mitglied werden</a></li>
</ul>
<br />
<ul>
<li><a href="#"><strong>Arbeitsgruppen</strong></a></li>
<li><a href="#"><abbr title="Arbeitsgruppe">AG</abbr> Zwischennutzung</a></li>
<li><a href="#"><abbr title="Arbeitsgruppe">AG</abbr> Wohnen</a></li>
<li><a href="#"><abbr title="Arbeitsgruppe">AG</abbr> Quartier und Kultur</a></li>
<li><a href="#"><abbr title="Arbeitsgruppe">AG</abbr> Öffentlichkeitsarbeit</a></li>
</ul>
</div>
<div class="column">
<ul>
<li><a href="#"><strong>Kasernengelände</strong></a></li>
<li><a href="#">Historie der Ermekeilkaserne</a></li>
<li><a href="#">Die Ermekeilstraße</a></li>
<li><a href="#">Gebäude der Ermekeilkaserne</a></li>
<li><a href="#">Gründung der Bundeswehr</a></li>
<li><a href="#">Fotos, Videos und Impressionen</a></li>
</ul>
<br />
<ul>
<li><strong>Sonstiges</strong></li>
<li><a href="#">Unser Netzwerk</a></li>
<li><a href="#">Interner Bereich</a></li>
</ul>
</div>
<div class="column">
<ul>
<li><strong>Rechtliches</strong></li>
<li><a href="#">Kontakt</a></li>
<li><a href="#">Impressum & Datenschutz</a></li>
<li><a href="#">Haftungsausschluss</a></li>
<li><a href="#">Sitemap</a></li>
</ul>
<br />
<br />
<br />
<br />
<ul>
<li><a href="https://www.facebook.com/Ermekeilkaserne" title="Ermekeilinitiative e. V. bei Facebook"><img src="http://46.101.191.124/wp-content/themes/FoundationPress/assets/images/FB-f-Logo__blue_512.png" alt="Ermekeilinitiative e. V. bei Facebook" width="32" height="32" /> /Ermekeilkaserne</a></li>
</ul>
</div>
</div>
<?php dynamic_sidebar( 'footer-widgets' ); ?>
<?php do_action( 'foundationpress_after_footer' ); ?>
</footer>
</div>
<?php do_action( 'foundationpress_layout_end' ); ?>
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) == 'offcanvas' ) : ?>
</div><!-- Close off-canvas wrapper inner -->
</div><!-- Close off-canvas wrapper -->
</div><!-- Close off-canvas content wrapper -->
<?php endif; ?>
<?php wp_footer(); ?>
<?php do_action( 'foundationpress_before_closing_body' ); ?>
<script>
// Smooth scroller for local page links.
jQuery(function() {
jQuery('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = jQuery(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
jQuery('html,body').animate({
scrollTop: target.offset ().top -0
}, 600);
return false;
}
}
});
});
</script>
</body>
</html>