This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
forked from SnowDayGroup/Wolf
-
Notifications
You must be signed in to change notification settings - Fork 6
/
footer.php
84 lines (69 loc) · 3.12 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package wolf
*/
?>
<?php tha_content_bottom(); ?>
</div><!-- #main -->
<?php tha_content_after(); ?>
<?php tha_footer_before(); ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php tha_footer_top(); ?>
<div id="footer-widgets">
<div class="footer-widget left">
<?php if ( ! dynamic_sidebar( 'sidebar-left-footer' ) ) : ?>
<aside id="search" class="widget widget_search">
<?php get_search_form(); ?>
</aside>
<?php endif; // end sidebar widget area ?>
</div><!-- first -->
<div class="footer-widget center">
<?php if ( ! dynamic_sidebar( 'sidebar-center-footer' ) ) : ?>
<aside id="archives" class="widget">
<h1 class="widget-title"><?php _e( 'Archives', 'wolf' ); ?></h1>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</aside>
<?php endif; // end sidebar widget area ?>
</div><!-- second -->
<div class="footer-widget right">
<?php if ( ! dynamic_sidebar( 'sidebar-right-footer' ) ) : ?>
<aside id="archives" class="widget">
<h1 class="widget-title"><?php _e( 'Archives', 'wolf' ); ?></h1>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</aside>
<?php endif; // end sidebar widget area ?>
</div><!-- third -->
<div class="three columns">
<?php if ( ! dynamic_sidebar( 'sidebar-right-footer' ) ) : ?>
<aside id="meta" class="widget">
<h1 class="widget-title"><?php _e( 'Meta', 'wolf' ); ?></h1>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</aside>
<?php endif; // end sidebar widget area ?>
</div><!-- fourth -->
</div>
<div class="site-info">
<?php do_action( 'wolf_credits' ); ?>
<a href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'wolf' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'wolf' ), 'WordPress' ); ?></a>
<?php printf( __( 'and %1$s by %2$s.', 'wolf' ), '<a href="http://github.com/snowdaygroup/Wolf">Wolf</a>', '<a href="http://snowday.io/" rel="designer">Snow Day Group</a>' ); ?>
</div><!-- .site-info -->
<?php tha_footer_bottom(); ?>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php tha_footer_after(); ?>
<?php tha_body_bottom(); ?>
<?php wp_footer(); ?>
</body>
</html>