<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<xsl:template match="/">
		
		<xsl:apply-templates />

	</xsl:template>

	<xsl:template match="BlogArchive">
		<xsl:apply-templates />
	</xsl:template>


	<xsl:template match="Month">
		<div style="padding: 0px 0px 10px 5px;">
			<a href="search.aspx?ps={@PeriodStart}&amp;pe={@PeriodEnd}"><xsl:value-of select="@Key" /> (<xsl:value-of select="@Count" />)</a> 
		</div>
	</xsl:template>

</xsl:stylesheet>
