-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
40 lines (34 loc) · 1.27 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
<?php
/**
* @package WordPress
* @subpackage PulsePress
*/
get_sidebar(); ?>
<div class="clear"></div>
</div> <!-- // wrapper -->
<div id="footer">
<p>
<?php printf( __( '<a href="http://blogs.ubc.ca/beta/pulsepress" >PulsePress</a> is proudly powered by <a href="http://wordpress.org" title="Learn about WordPress">WordPress</a>.', 'pulse_press' ) ); ?>
</p>
</div>
<div id="notify"></div>
<div id="help">
<dl class="directions">
<dt>c</dt><dd><?php _e( 'compose new post', 'pulse_press' ); ?></dd>
<dt>j</dt><dd><?php _e( 'next post/next comment', 'pulse_press' ); ?></dd>
<dt>k</dt> <dd><?php _e( 'previous post/previous comment', 'pulse_press' ); ?></dd>
<dt>r</dt> <dd><?php _e( 'reply', 'pulse_press' ); ?></dd>
<?php if ( current_user_can( 'edit_post', get_the_id() ) ) : ?>
<dt>e</dt> <dd><?php _e( 'edit', 'pulse_press' ); ?></dd>
<?php endif; ?>
<dt>o</dt> <dd><?php _e( 'show/hide comments', 'pulse_press' ); ?></dd>
<dt>t</dt> <dd><?php _e( 'go to top', 'pulse_press' ); ?></dd>
<dt>l</dt> <dd><?php _e( 'go to login', 'pulse_press' ); ?></dd>
<dt>h</dt> <dd><?php _e( 'show/hide help', 'pulse_press' ); ?></dd>
<dt>esc</dt> <dd><?php _e( 'cancel', 'pulse_press' ); ?></dd>
</dl>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>