-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
45 lines (39 loc) · 1.14 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
<?php
/**
* Footer template.
*
* @package P3
*/
?>
<div class="clear"></div>
</div> <!-- // wrapper -->
<div id="footer">
<p>
<?php echo prologue_poweredby_link(); ?>
<?php
printf(
__( 'Theme: %1$s by %2$s.', 'p3' ),
'<a href="https://github.com/redpandaventures/p3">P3</a>',
'<a href="https://redpandaventures.com" rel="designer">Red Panda Ventures</a>'
);
?>
</p>
</div>
<div id="notify"></div>
<div id="help">
<dl class="directions">
<dt>c</dt><dd><?php _e( 'Compose new post', 'p3' ); ?></dd>
<dt>j</dt><dd><?php _e( 'Next post/Next comment', 'p3' ); ?></dd>
<dt>k</dt> <dd><?php _e( 'Previous post/Previous comment', 'p3' ); ?></dd>
<dt>r</dt> <dd><?php _e( 'Reply', 'p3' ); ?></dd>
<dt>e</dt> <dd><?php _e( 'Edit', 'p3' ); ?></dd>
<dt>o</dt> <dd><?php _e( 'Show/Hide comments', 'p3' ); ?></dd>
<dt>t</dt> <dd><?php _e( 'Go to top', 'p3' ); ?></dd>
<dt>l</dt> <dd><?php _e( 'Go to login', 'p3' ); ?></dd>
<dt>h</dt> <dd><?php _e( 'Show/Hide help', 'p3' ); ?></dd>
<dt><?php _e( 'shift + esc', 'p3' ); ?></dt> <dd><?php _e( 'Cancel', 'p3' ); ?></dd>
</dl>
</div>
<?php wp_footer(); ?>
</body>
</html>