forked from RRZE-Webteam/Design-RRZE-Techfak2013
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
44 lines (32 loc) · 1.27 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
<?php
/*
* Footer
*/
?>
<hr id="vorfooter" />
</div> <!-- end: content -->
</div> <!-- end: main -->
<footer><div id="footer"> <!-- begin: footer -->
<div id="footerinfos"> <!-- begin: footerinfos -->
<?php if ( has_nav_menu( 'tecmenu' ) ) { ?>
<nav role="navigation">
<div id="tecmenu"> <!-- begin: tecmenu -->
<h2 class="skip"><a name="hilfemarke" id="hilfemarke">Technisches Menu</a></h2>
<?php wp_nav_menu( array( 'theme_location' => 'tecmenu', 'fallback_cb' => '' ) );?>
</div> <!-- end: tecmenu -->
</nav>
<?php } ?>
<div id="zusatzinfo" class="noprint"> <!-- begin: zusatzinfo -->
<a id="zusatzinfomarke" name="zusatzinfomarke"></a>
<?php if ( is_active_sidebar( 'zusatzinfo-area' ) ) {
dynamic_sidebar( 'zusatzinfo-area' );
} ?>
<p class="skip"><a href="#seitenmarke">Zum Seitenanfang</a></p>
</div> <!-- end: zusatzinfo -->
</div> <!-- end: footerinfos -->
</div></footer> <!-- end: footer -->
</div> <!-- end: seite -->
</div> <!-- end: page_margins -->
<?php wp_footer(); ?>
</body> <!-- end: body -->
</html>