Index: trunk/templates/source/recent_comments_block.html
===================================================================
--- trunk/templates/source/recent_comments_block.html	(revision 89)
+++ trunk/templates/source/recent_comments_block.html	(revision 89)
@@ -0,0 +1,33 @@
+<{* **************************  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}>
+   ************************* End of usage ************************ *}>
+<{* Start Template *}>
+
+<div id="xpress_recent_comments">
+	<{$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>
+	<{/foreach}>
+</div>
Index: trunk/templates/source/recent_posts_content_block.html
===================================================================
--- trunk/templates/source/recent_posts_content_block.html	(revision 89)
+++ trunk/templates/source/recent_posts_content_block.html	(revision 89)
@@ -0,0 +1,43 @@
+<{* **************************  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}>
+************************* End of usage ************************ *}>
+<{* Start Template *}>
+
+<ul class="xpress_recent_comments">
+	<{$block.data_count}>
+	<{foreach from=$block.contents item=content}>
+		<li>
+		<{$content.post_id}><br />
+		<{$content.post_title}><br />
+		<{$content.post_content}><br />
+		<{$content.post_date}><br />
+		<{$content.post_time}><br />
+		<{$content.post_date_time}><br />
+		<{$content.post_modified_date}><br />
+		<{$content.post_modified_time}><br />
+		<{$content.post_modified_date_time}><br />
+		<{$content.post_author}><br />
+		<{$content.post_category}><br />
+		<{$content.post_tags}><br />
+		<{$content.post_views}><br />
+		<{$content.comment_link}><br />
+		<{$content.trackback_url}>
+		</li>
+	<{/foreach}>
+</ul>
