-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
64 lines (55 loc) · 2.65 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
<?php
/**
* The template for displaying the footer
*
* Contains footer content and the closing of the #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_sidebar( 'footer' ); ?>
<div class="skin-selector">
<table class="skin-table" cellspacing="5" cellpadding="0">
<tr>
<td><div name="Skin0" class="skinClass" title="<?php printf( __( 'Light Skin', 'moto-juice' ) ); ?>" id="skinDefault"></div></td>
<td><div name="Skin1" class="skinClass" title="<?php printf( __( 'Gray Skin', 'moto-juice' ) ); ?>" id="skinOgre"></div></td>
</tr>
<tr>
<td><div name="Skin2" class="skinClass" title="<?php printf( __( 'Green Skin', 'moto-juice' ) ); ?>" id="skinGreen"></div></td>
<td><div name="Skin3" class="skinClass" title="<?php printf( __( 'Orange Skin', 'moto-juice' ) ); ?>" id="skinOrange"></div></td>
</tr>
<tr>
<td><div name="Skin4" class="skinClass" title="<?php printf( __( 'Blue Skin', 'moto-juice' ) ); ?>" id="skinBlue"></div></td>
<td><div name="Skin5" class="skinClass" title="<?php printf( __( 'Yellow Skin', 'moto-juice' ) ); ?>" id="skinYellow"></div></td>
</tr>
<tr>
<td><div name="Skin6" class="skinClass" title="<?php printf( __( 'Solarized Skin', 'moto-juice' ) ); ?>" id="skinSolarized"></div></td>
<td><div name="Skin7" class="skinClass" title="<?php printf( __( 'Dark Skin', 'moto-juice' ) ); ?>" id="skinDark"></div></td>
</tr>
</table>
</div>
<a class="rss-sign" href="<?php bloginfo('atom_url'); ?>" title="<?php printf( __( 'RSS Atom Feed', 'moto-juice' ) ); ?>" target="_blank">
<span><?php printf( __( 'RSS Atom', 'moto-juice' ) ); ?></span>
</a><!-- .rss-sign -->
<div class="footer-sign">
<div class="copyright-sign">
<?php printf( __( '(c) 2010-%s. All Rights Reserved.', 'moto-juice' ), date('Y') ); ?>
</div><!--.copyright-sign-->
<div class="design-sign">
<?php printf( __( 'Designed by ', 'moto-juice' ) ); ?>
<a href="<?php echo esc_url( __( '//exlmoto.ru/', 'moto-juice' ) ); ?>"><?php printf( __( 'EXL', 'moto-juice' ) ); ?></a>
</div><!--.design-sign-->
<div class="theme-sign">
<?php printf( __( 'Theme: ', 'moto-juice' ) ); ?>
<a href="<?php echo esc_url( __( 'https://github.com/EXL/MotoJuice', 'moto-juice' ) ); ?>" target="_blank"><?php printf( __( 'Moto Juice', 'moto-juice' ) ); ?></a>
</div><!--.theme-sign-->
</div><!--.footer-sign-->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>