-
Notifications
You must be signed in to change notification settings - Fork 9
/
footer.php
39 lines (33 loc) · 1.08 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
<?php
/**
* @package WordPress
* @subpackage P2
*/
?>
<?php get_sidebar(); ?>
<div class="clear"></div>
</div> <!-- // wrapper -->
<div id="footer">
<p>
<?php echo prologue_poweredby_link(); ?>
<?php printf( __( 'Theme: %1$s by %2$s.', 'p2' ), 'P2', '<a href="http://automattic.com/" rel="designer">Automattic</a>' ); ?>
</p>
</div>
<div id="notify"></div>
<div id="help">
<dl class="directions">
<dt>c</dt><dd><?php _e( 'compose new post', 'p2' ); ?></dd>
<dt>j</dt><dd><?php _e( 'next post/next comment', 'p2' ); ?></dd>
<dt>k</dt> <dd><?php _e( 'previous post/previous comment', 'p2' ); ?></dd>
<dt>r</dt> <dd><?php _e( 'reply', 'p2' ); ?></dd>
<dt>e</dt> <dd><?php _e( 'edit', 'p2' ); ?></dd>
<dt>o</dt> <dd><?php _e( 'show/hide comments', 'p2' ); ?></dd>
<dt>t</dt> <dd><?php _e( 'go to top', 'p2' ); ?></dd>
<dt>l</dt> <dd><?php _e( 'go to login', 'p2' ); ?></dd>
<dt>h</dt> <dd><?php _e( 'show/hide help', 'p2' ); ?></dd>
<dt><?php _e( 'shift', 'p2' ); ?> + esc</dt> <dd><?php _e( 'cancel', 'p2' ); ?></dd>
</dl>
</div>
<?php wp_footer(); ?>
</body>
</html>