View difference between Paste ID: whf5Dvc7 and mueZeTur
SHOW: | | - or go back to the newest paste.
1
<?php 
2
get_header();
3
if (have_posts()) {
4
5
	while (have_posts()) : the_post();
6-
		easel_display_post();	
6+
		easel_display_post();
7
		RBL_UI();
8
	endwhile;
9
	
10
} else { ?>
11
12
	<div <?php post_class(); ?>>
13
		<div class="post-head"></div>
14
		<div class="post">
15
			<p><?php _e('Sorry, post is not found.','easel'); ?></p>
16
			<div class="clear"></div>
17
		</div>
18
		<div class="post-foot"></div>
19
	</div>
20
	<?php
21
}
22-
RBL_UI();
22+
23
?>