Index: trunk/wp-content/themes/xpress_default/blocks/block_style.css
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/block_style.css	(revision 163)
+++ trunk/wp-content/themes/xpress_default/blocks/block_style.css	(revision 165)
@@ -337,2 +337,4 @@
 
 }
+
+
Index: trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php	(revision 163)
+++ trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php	(revision 165)
@@ -45,8 +45,5 @@
 			ob_end_clean();
 			
-			ob_start();
-				the_title();
-				$title = ob_get_contents();
-			ob_end_clean();
+			$title = xpress_the_title(false);
 			
 			ob_start();
@@ -104,4 +101,48 @@
 				$comments_popup_link = ob_get_contents();
 			ob_end_clean();
+
+// all_in_one			
+			ob_start();
+?>
+				<div class="xpress-post" id="post-<?php the_ID(); ?>">
+					<div class ="xpress-post-header">
+						<?php if (function_exists('hotDates')) { hotDates(); }?>
+						<div class ="xpress-post-title">
+							<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
+						</div>
+					</div>
+					<div class="xpress-post-entry">
+<?php
+			if ($excerpt){
+				$excerpt_length_word = $excerpt_size;
+				$excerpt_length_character = $excerpt_size;
+				$more_link_text = '';
+				$post_content = get_xpress_excerpt_contents($excerpt_length_word,$excerpt_length_character,$more_link_text);
+			} else {
+				$post_content = xpress_the_content(__('more'),0,'',false);	
+			}
+			echo $post_content;
+?>							
+					</div>
+					<div class="xpress-link-pages"><?php wp_link_pages() ?></div>
+					<div class ="xpress-post-footer">
+<?php
+						the_time('Y/m/d l');
+						echo ' - ';
+						the_author_posts_link();
+						echo ' (' . xpress_post_views_count($post->ID,__('Views :%d', 'xpress'),false) . ')'; 
+						echo ' | ';
+						// echo the_tags(__('Tags:', 'xpress') . ' ', ', ', ' | ');
+						printf(__('Posted in %s', 'xpress'), get_the_category_list(', '));
+						echo ' | ';
+						edit_post_link(__('Edit', 'xpress'), '', ' | ');
+						comments_popup_link(__('No Comments &#187;', 'xpress'), __('1 Comment &#187;', 'xpress'), __('% Comments &#187;', 'xpress'), '', __('Comments Closed', 'xpress') );
+?>
+					</div>
+				</div>
+<?php
+			$all_in_one = ob_get_contents();
+			ob_end_clean();
+						
 			
 			$post_title = '<a href="' . $permalink . '">' . $title . '</a>';
@@ -127,5 +168,6 @@
 				'post_views' 		=> $post_viwes,
 				'comment_link' 	=> $comments_popup_link ,
-				'trackback_url' => $trackback_url
+				'trackback_url' => $trackback_url ,
+				'all_in_one' => $all_in_one
 			);
 			
@@ -137,3 +179,4 @@
 	return $block ;
 }
+
 ?>
Index: trunk/wp-content/themes/xpress_default/index.php
===================================================================
--- trunk/wp-content/themes/xpress_default/index.php	(revision 163)
+++ trunk/wp-content/themes/xpress_default/index.php	(revision 165)
@@ -30,5 +30,5 @@
 					</div>
 					<div class="xpress-post-entry">
-						<?php xpress_the_content(__('Read the rest of this entry &raquo;') ); ?>
+						<?php xpress_the_content(__('Read the rest of this entry &raquo;', 'xpress') ); ?>
 					</div>
 					<div class="xpress-link-pages"><?php wp_link_pages() ?></div>
