Index: trunk/templates/source/category_block.html
===================================================================
--- trunk/templates/source/category_block.html	(revision 122)
+++ trunk/templates/source/category_block.html	(revision 122)
@@ -0,0 +1,15 @@
+<{* **************************  usage ****************************
+ 	The template tag of the following list can be used. 
+		<{$block.err_message}> 					// When the block cannot be displayed, this outputs the reason. Please do not delete it.
+ 		<{$block.categories}>					// Displays Categories from wp_list_categories() function
+   ************************* End of usage ************************ *}>
+<{* Start Template *}>
+
+<div class="xpress_block">
+	<{$block.err_message}>
+	<div class="xpress_category_block">
+		<ul>
+		<{$block.categories}>
+		</ul>
+	</div>
+</div>
Index: trunk/templates/source/meta_block.html
===================================================================
--- trunk/templates/source/meta_block.html	(revision 122)
+++ trunk/templates/source/meta_block.html	(revision 122)
@@ -0,0 +1,13 @@
+<{* **************************  usage ****************************
+ 	The template tag of the following list can be used. 
+		<{$block.err_message}> 					// When the block cannot be displayed, this outputs the reason. Please do not delete it.
+ 		<{$block.meta_info}>					// Displays Meta Info. 
+   ************************* End of usage ************************ *}>
+<{* Start Template *}>
+
+<div class="xpress_block">
+	<{$block.err_message}>
+	<div class="xpress_meta_block">
+		<{$block.meta_info}>
+	</div>
+</div>
Index: trunk/templates/source/tag_cloud_block.html
===================================================================
--- trunk/templates/source/tag_cloud_block.html	(revision 122)
+++ trunk/templates/source/tag_cloud_block.html	(revision 122)
@@ -0,0 +1,13 @@
+<{* **************************  usage ****************************
+ 	The template tag of the following list can be used. 
+		<{$block.err_message}> 					// When the block cannot be displayed, this outputs the reason. Please do not delete it.
+ 		<{$block.tag_cloud}>					// Displays Tag Cloud from wp_tag_cloud() function
+   ************************* End of usage ************************ *}>
+<{* Start Template *}>
+
+<div class="xpress_block">
+	<{$block.err_message}>
+	<div class="xpress_tag_cloud_block">
+		<{$block.tag_cloud}>
+	</div>
+</div>
