-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·53 lines (48 loc) · 1.89 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package Spun
*/
$spun_facebook = get_theme_mod( 'jetpack-facebook' );
$spun_twitter = get_theme_mod( 'jetpack-twitter' );
$spun_tumblr = get_theme_mod( 'jetpack-tumblr' );
$spun_linkedin = get_theme_mod( 'jetpack-linkedin' );
?>
</div><!-- #main .site-main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php do_action( 'spun_credits' ); ?>
<a href="http://assemblio.com/" rel="generator"><?php printf( __( 'Made in Kosovo by %s', 'spun' ), 'Assemblio LLC' ); ?></a>
</div><!-- .site-info -->
<?php if ( $spun_facebook || $spun_twitter || $spun_tumblr || $spun_linkedin ) : ?>
<div class="social-links">
<?php if ( $spun_facebook ) : ?>
<a href="<?php echo esc_url( $spun_facebook ); ?>" class="facebook-link" data-icon="">
<span class="screen-reader-text"><?php esc_html_e( 'Facebook', 'spun' ); ?></span>
</a>
<?php endif; ?>
<?php if ( $spun_linkedin ) : ?>
<a href="<?php echo esc_url( $spun_linkedin ); ?>" class="linkedin-link" data-icon="">
<span class="screen-reader-text"><?php esc_html_e( 'LinkedIn', 'spun' ); ?></span>
</a>
<?php endif; ?>
<?php if ( $spun_twitter ) : ?>
<a href="<?php echo esc_url( $spun_twitter ); ?>" class="twitter-link" data-icon="">
<span class="screen-reader-text"><?php esc_html_e( 'Twitter', 'spun' ); ?></span>
</a>
<?php endif; ?>
<?php if ( $spun_tumblr ) : ?>
<a href="<?php echo esc_url( $spun_tumblr ); ?>" class="tumblr-link" data-icon="">
<span class="screen-reader-text"><?php esc_html_e( 'Tumblr', 'spun' ); ?></span>
</a>
<?php endif; ?>
</div>
<?php endif; ?>
</footer><!-- #colophon .site-footer -->
</div><!-- #page .hfeed .site -->
<?php wp_footer(); ?>
</body>
</html>