Index: trunk/templates/source/archives_block.html
===================================================================
--- trunk/templates/source/archives_block.html	(revision 110)
+++ trunk/templates/source/archives_block.html	(revision 110)
@@ -0,0 +1,25 @@
+<{* **************************  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.data_count}>					// The number of archives is displayed. 
+ 		<{$block.config.is_archive_doropdown}>	// When this returns the true value. The user has selected the archive to be displayed by the drop down list in the setting of the block.  
+ 		<{$block.archive_dropdown}>				// Displays a dropdown list of links to date-based archives.
+		<{$block.contents}>						// Data array of archives. 
+		// Examples of <{$block.contents}>
+		<{foreach from=$block.contents item=content}>	// Loop
+		<{$content.archive}>					// Displays a list of links to date-based archives.
+		<{/foreach}>							// End of Loop
+************************* End of usage ************************ *}>
+<{* Start Template *}>
+<{$block.err_message}>
+<{if $block.config.is_archive_doropdown}>
+	<{$block.archive_dropdown}>
+<{else}>
+<ul class="xpress_archive_content">
+	<{foreach from=$block.contents item=content}>
+		<li>
+		<{$content.archive}>
+		</li>
+	<{/foreach}>
+</ul>
+<{/if}>
Index: trunk/templates/source/authors_block.html
===================================================================
--- trunk/templates/source/authors_block.html	(revision 110)
+++ trunk/templates/source/authors_block.html	(revision 110)
@@ -0,0 +1,19 @@
+<{* **************************  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.data_count}>					// The number of archives is displayed. 
+		<{$block.contents}>						// Data array of archives. 
+		// Examples of <{$block.contents}>
+		<{foreach from=$block.contents item=content}>	// Loop
+		<{$content.author}>						// the author name is displayed as a link to their posts. Optionally this tag displays each author's post count.
+		<{/foreach}>							// End of Loop
+************************* End of usage ************************ *}>
+<{* Start Template *}>
+<{$block.err_message}>
+<ul class="xpress_authors_content">
+	<{foreach from=$block.contents item=content}>
+		<li>
+		<{$content.author}>
+		</li>
+	<{/foreach}>
+</ul>
Index: trunk/templates/source/popular_posts_block.html
===================================================================
--- trunk/templates/source/popular_posts_block.html	(revision 109)
+++ trunk/templates/source/popular_posts_block.html	(revision 110)
@@ -1,19 +1,24 @@
 <{* **************************  usage ****************************
  	The template tag of the following list can be used. 
- 		<{$block.data_count}>
-		<{$content.post_id}>
-		<{$content.post_title}>
-		<{$content.post_date}>
-		<{$content.post_time}>
-		<{$content.post_date_time}>
-		<{$content.post_modified_date}>
-		<{$content.post_modified_time}>
-		<{$content.post_modified_date_time}>
-		<{$content.post_author}>
-		<{$content.post_category}>
-		<{$content.post_tags}>
-		<{$content.post_views}>
-		<{$content.comment_link}>
-		<{$content.trackback_url}>
+ 		<{$block.err_message}> 					// When the block cannot be displayed, this outputs the reason. Please do not delete it.
+		<{$block.data_count}>					// The number of contents is displayed. 
+		<{$block.contents}>						// Data array of contents. 
+		// Examples of <{$block.contents}>
+		<{foreach from=$block.contents item=content}>	// Loop
+		<{$content.post_id}>					// Displays the numeric ID of the post.
+		<{$content.post_title}>					// Displays the post's permalink, where the link text value is the posts title name.
+		<{$content.post_date}>					// Displays the published date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_time}>					// Displays the published time of a post. Format at time set by general setting of Wordpress.
+		<{$content.post_date_time}>				// Displays the published date-time of a post.
+		<{$content.post_modified_date}>			// Displays the modified date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_modified_time}>			// Displays the modified date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_modified_date_time}>	// Displays the modified date-time of a post.
+		<{$content.post_author}>				// Displays the author's archive link, where the link text value is the user's Display name. 
+		<{$content.post_category}>				// Displays a link to the category or categories a post belongs to.
+		<{$content.post_tags}>					// Displays a link to the tag or tags a post belongs to.
+		<{$content.post_views}>					// Displays the number of posts viewer.
+		<{$content.comment_link}>				// Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. 
+		<{$content.trackback_url}>				// Displays the trackback URL for the current post.
+		<{/foreach}>							// End of Loop
 ************************* End of usage ************************ *}>
 <{* Start Template *}>
Index: trunk/templates/source/recent_comments_block.html
===================================================================
--- trunk/templates/source/recent_comments_block.html	(revision 109)
+++ trunk/templates/source/recent_comments_block.html	(revision 110)
@@ -1,34 +1,39 @@
 <{* **************************  usage ****************************
  	The template tag of the following list can be used. 
- 		<{$block.data_count}>
-		<{$content.from_auther_to_post}>
-		<{$content.comment_ID}>
-		<{$content.comment_post_ID}>
-		<{$content.comment_date}>
-		<{$content.comment_date_time}>
-		<{$content.comment_content}>
-		<{$content.comment_excerpt}>
-		<{$content.comment_link}>
-		<{$content.comment_title}>
-		<{$content.comment_title_link}>
-		<{$content.post_link}>
-		<{$content.post_title}>
-		<{$content.post_title_link}>
-		<{$content.author_link}>
-		<{$content.author_name}>
-		<{$content.author_name_link}>
-		<{$content.comment_type}>
+ 		<{$block.err_message}> 					// When the block cannot be displayed, this outputs the reason. Please do not delete it.
+		<{$block.data_count}>					// The number of contents is displayed. 
+		<{$block.contents}>						// Data array of contents. 
+		// Examples of <{$block.contents}>
+		<{foreach from=$block.contents item=content}>	// Loop
+		<{$content.from_auther_to_post}>		// It is displayed by "Author of the comment on the post" format. Each link is included in it. 
+		<{$content.comment_ID}>					// Displays the numeric ID of a comment.
+		<{$content.comment_post_ID}>			// Displays the numeric ID of the target post for the comment is displayed. 
+		<{$content.comment_date}>				// Displays the published date of a comment. Format at date set by general setting of Wordpress.
+		<{$content.comment_date_time}>			// Displays the published date-time of a comment. Format at date-time set by general setting of Wordpress.
+		<{$content.comment_content}>			// Displays the contents of a comment.
+		<{$content.comment_excerpt}>			// Displays the excerpt@contents of a comment.
+		<{$content.comment_link}>				// Displays the comment link.
+		<{$content.comment_title}>				// Displays the title of a comment.
+		<{$content.comment_title_link}>			// Displays the comment link, where the link text value is the comment's title name.
+		<{$content.post_link}>					// Displays a link to the post a comment belongs to.
+		<{$content.post_title}>					// Displays a title to the post a comment belongs to.
+		<{$content.post_title_link}>			// Displays the post's permalink, where the link text value is the posts title name.
+		<{$content.author_link}>				// Displays the link of comment author's web homepages.
+		<{$content.author_name}>				// Displays the comment author's name.
+		<{$content.author_name_link}>			// Displays the link of comment author's web homepages, where the link text value is the author's name.
+		<{$content.comment_type}>				// Displays the comment type. (type is comment,truckback or pingback)
+		<{/foreach}>							// End of Loop
    ************************* End of usage ************************ *}>
 <{* Start Template *}>
 
-<div id="xpress_recent_comments">
+<ul id="xpress_recent_comments">
 	<{$block.err_message}>
 	<{$block.data_count}>
 	<{foreach from=$block.contents item=content}>
-		<ul>
-			<li><{$content.from_auther_to_post}></li>
-			<li><{$content.comment_excerpt}></li>
-			<li><{$content.comment_date_time}></li>
-		</ul>
+		<li>
+			<{$content.from_auther_to_post}><br />
+			<{$content.comment_excerpt}><br />
+			<{$content.comment_date_time}>
+		</li>
 	<{/foreach}>
-</div>
+</ul>
Index: trunk/templates/source/recent_posts_content_block.html
===================================================================
--- trunk/templates/source/recent_posts_content_block.html	(revision 109)
+++ trunk/templates/source/recent_posts_content_block.html	(revision 110)
@@ -1,20 +1,25 @@
 <{* **************************  usage ****************************
  	The template tag of the following list can be used. 
- 		<{$block.data_count}>
-		<{$content.post_id}>
-		<{$content.post_title}>
-		<{$content.post_content}>
-		<{$content.post_date}>
-		<{$content.post_time}>
-		<{$content.post_date_time}>
-		<{$content.post_modified_date}>
-		<{$content.post_modified_time}>
-		<{$content.post_modified_date_time}>
-		<{$content.post_author}>
-		<{$content.post_category}>
-		<{$content.post_tags}>
-		<{$content.post_views}>
-		<{$content.comment_link}>
-		<{$content.trackback_url}>
+ 		<{$block.err_message}> 					// When the block cannot be displayed, this outputs the reason. Please do not delete it.
+		<{$block.data_count}>					// The number of contents is displayed. 
+		<{$block.contents}>						// Data array of contents. 
+		// Examples of <{$block.contents}>
+		<{foreach from=$block.contents item=content}>	// Loop
+		<{$content.post_id}>					// Displays the numeric ID of the post.
+		<{$content.post_title}>					// Displays the post's permalink, where the link text value is the posts title name.
+		<{$content.post_content}>				// Displays the contents of the post.
+		<{$content.post_date}>					// Displays the published date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_time}>					// Displays the published time of a post. Format at time set by general setting of Wordpress.
+		<{$content.post_date_time}>				// Displays the published date-time of a post.
+		<{$content.post_modified_date}>			// Displays the modified date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_modified_time}>			// Displays the modified date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_modified_date_time}>	// Displays the modified date-time of a post.
+		<{$content.post_author}>				// Displays the author's archive link, where the link text value is the user's Display name. 
+		<{$content.post_category}>				// Displays a link to the category or categories a post belongs to.
+		<{$content.post_tags}>					// Displays a link to the tag or tags a post belongs to.
+		<{$content.post_views}>					// Displays the number of posts viewer.
+		<{$content.comment_link}>				// Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. 
+		<{$content.trackback_url}>				// Displays the trackback URL for the current post.
+		<{/foreach}>							// End of Loop
 ************************* End of usage ************************ *}>
 <{* Start Template *}>
Index: trunk/templates/source/recent_posts_list_block.html
===================================================================
--- trunk/templates/source/recent_posts_list_block.html	(revision 109)
+++ trunk/templates/source/recent_posts_list_block.html	(revision 110)
@@ -1,20 +1,25 @@
 <{* **************************  usage ****************************
  	The template tag of the following list can be used. 
- 		<{$block.data_count}>
-		<{$content.post_id}>
-		<{$content.new_mark}>
-		<{$content.post_title}>
-		<{$content.post_date}>
-		<{$content.post_time}>
-		<{$content.post_date_time}>
-		<{$content.post_modified_date}>
-		<{$content.post_modified_time}>
-		<{$content.post_modified_date_time}>
-		<{$content.post_author}>
-		<{$content.post_category}>
-		<{$content.post_tags}>
-		<{$content.post_views}>
-		<{$content.comment_link}>
-		<{$content.trackback_url}>
+ 		<{$block.err_message}>					// When the block cannot be displayed, this outputs the reason. Please do not delete it. 
+ 		<{$block.data_count}>					// The number of contents is displayed.
+		<{$block.contents}>						// Data array of contents. 
+		// Examples of <{$block.contents}>
+		<{foreach from=$block.contents item=content}>	// Loop
+		<{$content.post_id}>					// Displays the numeric ID of the post.
+		<{$content.new_mark}>					// The mark is displayed. The mark is different according to lapsed days from the release date. 
+		<{$content.post_title}>					// Displays the post's permalink, where the link text value is the posts title name.
+		<{$content.post_date}>					// Displays the published date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_time}>					// Displays the published time of a post. Format at time set by general setting of Wordpress.
+		<{$content.post_date_time}>				// Displays the published date-time of a post.
+		<{$content.post_modified_date}>			// Displays the modified date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_modified_time}>			// Displays the modified date of a post. Format at date set by general setting of Wordpress.
+		<{$content.post_modified_date_time}>	// Displays the modified date-time of a post.
+		<{$content.post_author}>				// Displays the author's archive link, where the link text value is the user's Display name. 
+		<{$content.post_category}>				// Displays a link to the category or categories a post belongs to.
+		<{$content.post_tags}>					// Displays a link to the tag or tags a post belongs to.
+		<{$content.post_views}>					// Displays the number of posts viewer.
+		<{$content.comment_link}>				// Displays a link to the comments popup window if comments_popup_script() is used, otherwise it displays a normal link to comments. 
+		<{$content.trackback_url}>				// Displays the trackback URL for the current post.
+		<{/foreach}>							// End of Loop
 ************************* End of usage ************************ *}>
 <{* Start Template *}>
