Index: trunk/include/xpress_templates_make.php
===================================================================
--- trunk/include/xpress_templates_make.php	(revision 123)
+++ trunk/include/xpress_templates_make.php	(revision 124)
@@ -85,4 +85,5 @@
 		'category_block.html',
 		'meta_block.html' ,
+		'sidebar_block.html' ,
 		'index.html',
 	);
Index: trunk/language/ja_utf8/modinfo.php
===================================================================
--- trunk/language/ja_utf8/modinfo.php	(revision 123)
+++ trunk/language/ja_utf8/modinfo.php	(revision 124)
@@ -29,4 +29,5 @@
 	define("_MI_XPRESS_BLOCK_CATEGORY","カテゴリー");
 	define("_MI_XPRESS_BLOCK_META","メタ情報");
+	define("_MI_XPRESS_BLOCK_SIDEBAR","サイドバー");
 	
 	// Notify Categories
Index: trunk/wp-content/themes/xpress_default/blocks/block_style.css
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/block_style.css	(revision 123)
+++ trunk/wp-content/themes/xpress_default/blocks/block_style.css	(revision 124)
@@ -318,2 +318,7 @@
 
 }
+
+/*********** sidebar block ***************/
+.xpress_sidebar_block {
+
+}
Index: trunk/xoops_version.php
===================================================================
--- trunk/xoops_version.php	(revision 123)
+++ trunk/xoops_version.php	(revision 124)
@@ -31,5 +31,5 @@
 $modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ;
 $modversion['description'] = constant( '_MI_XPRESS_DESC');
-$modversion['version'] = "0.09";
+$modversion['version'] = "0.10";
 $modversion['credits'] = "Wordpress DEV (http://wordpress.org/) XPressME DEV Toemon) (http://www.toemon.com) ;";
 $modversion['author'] = "toemon (http://www.toemon.com)";
@@ -40,5 +40,5 @@
 
 // status
-$modversion['codename'] = "r120";
+$modversion['codename'] = "r124";
 
 // onInstall, onUpdate, onUninstall
@@ -235,4 +235,15 @@
 	'func_num'		=> $b_no,	
 );
+$b_no++;
+$modversion['blocks'][$b_no] = array(
+	'file' 			=> 'sidebar_block.php' ,
+	'name' 			=> constant('_MI_XPRESS_BLOCK_SIDEBAR') ,
+	'description'	=> '' ,
+	'show_func' 	=> "b_". $mydirname . "_sidebar_show" ,
+	'edit_func' 	=> '' ,
+	'options'		=> '' ,
+	'can_clone'		=> false ,
+	'func_num'		=> $b_no,	
+);
 
 
