Index: trunk/templates/source/page_block.html
===================================================================
--- trunk/templates/source/page_block.html	(revision 118)
+++ trunk/templates/source/page_block.html	(revision 118)
@@ -0,0 +1,23 @@
+<{* **************************  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.page}>						// 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 *}>
+<div class="xpress_block">
+	<{$block.err_message}>
+	<div class='xpress_page_block>
+		<ul>
+		<{foreach from=$block.contents item=content}>
+			<li>
+			<{$content.page}>
+			</li>
+		<{/foreach}>
+		</ul>
+	</div>
+</div>
