-
Notifications
You must be signed in to change notification settings - Fork 7
/
footer.php
57 lines (47 loc) · 1.62 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
<?php
/**
* The template for displaying the footer.
*
* @package amethyst
* @author featherplain
* @link http://asknode.net/
* @license GPLv2 or later
*/
?>
</div><!-- /.l-main -->
<footer role="contentinfo" class="l-footer">
<div class="footer-widgets">
<div class="footer-widgets__inner">
<?php dynamic_sidebar( 'footer-widgets' ); ?>
</div>
</div><!-- / .footer-widgets -->
<div class="siteinfo">
<div class="siteinfo__inner">
<p id="credit" class="siteinfo__credit">
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'amethyst' ), 'WordPress' ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'amethyst' ), 'WordPress' ); ?></a>
<span class="siteinfo__sep"> | </span>
<a href="<?php echo esc_url( __( 'http://asknode.net/', 'amethyst' ), 'featherplain' ); ?>"><?php printf( esc_html__( 'Theme by %s', 'amethyst' ), 'featherplain' ); ?></a>
</p>
<div class="siteinfo__social">
<nav class="snav">
<?php
wp_nav_menu( array(
'theme_location' => 'social_nav',
'container' => false,
'items_wrap' => '<ul id="%1$s" class="snav__list">%3$s</ul>',
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
) );
?>
</nav>
</div>
<p id="copy" class="siteinfo__copy">
<?php echo esc_html( '© ' . date( 'Y' ) . ' ' . get_bloginfo( 'name' ) ); ?>
</p>
</div>
</div><!-- / .siteinfo -->
</footer><!-- / .l-footer -->
</div><!-- /.l-container -->
<?php wp_footer(); ?>
</body>
</html>