Index: /trunk/xpressme_integration_kit/wp-content/themes/xpress_default/home.php
===================================================================
--- /trunk/xpressme_integration_kit/wp-content/themes/xpress_default/home.php	(revision 525)
+++ /trunk/xpressme_integration_kit/wp-content/themes/xpress_default/home.php	(revision 525)
@@ -0,0 +1,7 @@
+<?php 
+	if (xpress_is_multiblog_root()){
+		include dirname(__FILE__) . '/multi_blog.php';
+	} else {
+		include dirname(__FILE__) . '/index.php';
+	}
+?>
Index: /trunk/xpressme_integration_kit/wp-content/themes/xpress_default/multi_blog.php
===================================================================
--- /trunk/xpressme_integration_kit/wp-content/themes/xpress_default/multi_blog.php	(revision 525)
+++ /trunk/xpressme_integration_kit/wp-content/themes/xpress_default/multi_blog.php	(revision 525)
@@ -0,0 +1,111 @@
+<?php get_header(); ?>
+
+<div id="content" class="widecolumn">			
+	<h3><?php _e('Site News', 'xpress'); ?></h3>
+	<ul>
+		<?php 
+		query_posts('showposts=7');
+		if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+		<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li>
+		<?php endwhile; ?><?php endif; ?>
+	</ul>
+	<br />	
+	<h3><?php _e('Blogs List', 'xpress'); ?></h3>
+	<?php
+	$blog_list = get_blog_list( 0, 'all' );
+	echo "<ul>\n";
+	foreach ($blog_list AS $blog) {
+		$url =  'http://' .$blog['domain'] .$blog['path'];
+		$blog_name = get_blog_option( $blog['blog_id'], 'blogname' );
+		$post_count = $blog['postcount'];
+		
+		echo  "<li><a href=\" $url \"> $blog_name </a>  (" . __('post count','xpress') . ":$post_count) </li>";
+	}
+	echo "</ul>\n";
+	?> 
+	<br />
+		
+<?php
+	$date_format = get_settings('date_format');
+	$blog_count = get_blog_count();
+	if ($blog_count > 1){
+		echo '<h3>' . __('New Entries', 'xpress') . "</h3>\n";
+
+		$blog_list = get_blog_list();
+		echo "<ul>\n";
+		for ($i = 0; $i < $blog_count; $i++){
+    		$blog_id = $blog_list[$i]['blog_id'];
+			if ($blog_id == 1) continue;
+        	$output_blogs = '<li><a href="' .
+            get_blog_option($blog_id,'siteurl') . '">' .
+            get_blog_option($blog_id,'blogname') .
+            '</a></li>';
+        	echo $output_blogs;
+
+			$wpdb->set_blog_id($blog_id);
+			query_posts("showposts=3&post_status=publish");
+			if (have_posts()){
+				echo "<ul>\n";
+				while(have_posts()){
+					the_post();
+        			echo '<li>';
+        			echo '<a href="' . $post->guid . '">' . $post->post_title . "</a>\n(";
+        			the_time($date_format);
+        			echo ")</li>\n";
+        		}
+				echo "</ul>\n";
+			}
+		}
+		$wpdb->set_blog_id(1);
+
+		echo "</ul>\n";
+	}
+?>
+
+	<h3><?php _e('Updated Blogs', 'xpress'); ?></h3>
+	<?php
+	$blogs = get_last_updated();
+	if( is_array( $blogs ) ) {
+		?>
+		<ul>
+		<?php foreach( $blogs as $details ) {
+			?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
+		}
+		?>
+		</ul>
+		<?php
+	}
+	?>
+	<br />	
+	<?php	
+		$current_uid = get_current_user_id();
+		if (!empty($current_uid)) {
+			$user_info = get_userdata($current_uid);
+			$display_name = $user_info->display_name;
+			echo '<h3>';
+			printf(__('Howdy %s', 'xpress'),$display_name);
+			echo "</h3>\n";
+			echo "<ul>\n";
+		
+			$user_blogs = get_blogs_of_user($current_uid);
+			if( is_array($user_blogs) ) {
+				echo '<li>' . __('Your Blogs list','xpress') ;
+					echo "<ul>\n";
+					foreach( $user_blogs as $blog ) {
+						$url =  'http://' .$blog->domain .$blog->path;
+						$blog_name = $blog->blogname;
+						echo  "<li><a href=\" $url \"> $blog_name </a></li>";
+					}
+					echo "</ul>\n";			
+				echo "</li>\n";
+				wp_register();
+			}
+			echo '<li> <a href="wp-signup.php">' . __('Create a new blog','xpress') .  "</a></li>\n";
+			echo "</ul>\n";			
+		}
+
+	?>
+
+</div>
+
+<?php get_footer(); ?>
