-
Notifications
You must be signed in to change notification settings - Fork 1
/
single.php
44 lines (29 loc) · 901 Bytes
/
single.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
<?php
/**
* @package WordPress
* @subpackage PulsePress
*/
?>
<?php get_header(); ?>
<div class="sleeve_main">
<div id="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<ul id="postlist">
<?php pulse_press_load_entry() // loads entry.php ?>
</ul>
<?php endwhile; ?>
<?php else : ?>
<ul id="postlist">
<li class="no-posts">
<h3><?php _e( 'No posts yet!', 'pulse_press' ); ?></h3>
</li>
</ul>
<?php endif; ?>
<div class="navigation">
<p class="nav-older"><?php previous_post_link( '%link', __( '←', 'Previous post link', 'pulse_press' ) . ' %title' ); ?></p>
<p class="nav-newer"><?php next_post_link( '%link', '%title ' . __( '→', 'Next post link', 'pulse_press' ) ); ?></p>
</div>
</div> <!-- main -->
</div> <!-- sleeve -->
<?php get_footer(); ?>