forked from retostauffer/wp-wetterturnier-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
64 lines (60 loc) · 1.94 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
<?php
/**
* The template for displaying the footer
*
* Contains footer content and the closing of the #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php
// Theme url (need to append -child)
$theme_uri = get_template_directory_uri().'-child';
?>
<?php get_sidebar( 'sidebar-3' ); ?>
<?php get_sidebar( 'footer' ); ?>
<logo>
<a href="https://www.geo.fu-berlin.de/met/ag/strat/index.html" target="_new">
<img src="<?php print $theme_uri; ?>/logo_fuberlin.svg" />
</a>
<h1>Server and Infrastructure</h1>
</logo>
<logo>
<a href="https://acinn.uibk.ac.at/" target="_new">
<img src="<?php print $theme_uri; ?>/logo_uibk.svg" />
</a>
<h1>Software and Data</h1>
</logo>
<logo>
<a href="https://www.dwd.de/" target="_new">
<img src="<?php print $theme_uri; ?>/logo_dwd.svg" />
</a>
<h1>Data and Weather Products</h1>
</logo>
<logo>
<a href="https://www.mswr.de/" target="_new">
<img src="<?php print $theme_uri; ?>/logo_meteoservice.svg" />
</a>
<h1>Data and Support</h1>
</logo>
<logo>
<a href="https://www.ubimet.com/" target="_new">
<img src="<?php print $theme_uri; ?>/logo_ubimet.png" />
</a>
<h1>Documents and Prices</h1>
</logo>
<logo>
<a href="https://www.wetterspiegel.de/" target="_new">
<img src="<?php print $theme_uri; ?>/logo_wetterspiegel.png" />
</a>
<h1>Documents and Prices</h1>
</logo>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>