View difference between Paste ID: U9BG8JjE and 9ABJxyWA
SHOW: | | - or go back to the newest paste.
1
<?php
2
/**
3
 * The template for displaying the footer.
4
 *
5
 * Contains the closing of the id=main div and all content after
6
 *
7
 * @package Spun
8
 */
9
10
$spun_facebook = get_theme_mod( 'jetpack-facebook' );
11
$spun_twitter = get_theme_mod( 'jetpack-twitter' );
12
$spun_tumblr = get_theme_mod( 'jetpack-tumblr' );
13
$spun_linkedin = get_theme_mod( 'jetpack-linkedin' );
14
?>
15
16
	</div><!-- #main .site-main -->
17
18
	<footer id="colophon" class="site-footer" role="contentinfo">
19
		<div class="site-info">
20
			<?php do_action( 'spun_credits' ); ?>
21
			<a href="http://wordpress.org/" rel="generator"><?php printf( __( 'Proudly powered by %s', 'spun' ), 'WordPress' ); ?></a>
22
            <span class="sep"> | </span>
23
        	<?php printf( __( 'Theme: %1$s by %2$s.', 'spun' ), 'spun', '<a href="http://carolinemoore.net/" rel="designer">Caroline Moore</a>' ); ?>
24
            <span class="sep"> | </span> 
25
            <span> Content Copyright 2013 Art Donsky </span>
26
		</div><!-- .site-info -->
27
		<?php if ( $spun_facebook || $spun_twitter || $spun_tumblr || $spun_linkedin ) : ?>
28
			<div class="social-links">
29
			<?php if ( $spun_facebook ) : ?>
30
				<a href="<?php echo esc_url( $spun_facebook ); ?>" class="facebook-link" data-icon="&#xF204;">
31
					<span class="screen-reader-text"><?php esc_html_e( 'Facebook', 'spun' ); ?></span>
32
				</a>
33
			<?php endif; ?>
34
			<?php if ( $spun_linkedin ) : ?>
35
				<a href="<?php echo esc_url( $spun_linkedin ); ?>" class="linkedin-link" data-icon="&#xF214;">
36
					<span class="screen-reader-text"><?php esc_html_e( 'LinkedIn', 'spun' ); ?></span>
37
				</a>
38
			<?php endif; ?>
39
			<?php if ( $spun_twitter ) : ?>
40
				<a href="<?php echo esc_url( $spun_twitter ); ?>" class="twitter-link" data-icon="&#xF202;">
41
					<span class="screen-reader-text"><?php esc_html_e( 'Twitter', 'spun' ); ?></span>
42
				</a>
43
			<?php endif; ?>
44
			<?php if ( $spun_tumblr ) : ?>
45
				<a href="<?php echo esc_url( $spun_tumblr ); ?>" class="tumblr-link" data-icon="&#xF214;">
46
					<span class="screen-reader-text"><?php esc_html_e( 'Tumblr', 'spun' ); ?></span>
47-
                        <span class="sep"> | </span> 
47+
48-
                        Content Copyright 2013 Art Donsky
48+
49
			</div>
50
		<?php endif; ?>
51
	</footer><!-- #colophon .site-footer -->
52
</div><!-- #page .hfeed .site -->
53
54
<?php wp_footer(); ?>
55
56
</body>
57
</html>