aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/99_result/article/article.xsl2
-rw-r--r--source/99_result/tag/tag.xsl7
2 files changed, 2 insertions, 7 deletions
diff --git a/source/99_result/article/article.xsl b/source/99_result/article/article.xsl
index 9c5cd3e..558ab6a 100644
--- a/source/99_result/article/article.xsl
+++ b/source/99_result/article/article.xsl
@@ -35,7 +35,7 @@
<p class="info">
<xsl:call-template name="format-date">
<xsl:with-param name="date" select="./date"/>
- <xsl:with-param name="format" select="'x. M Y'"/>
+ <xsl:with-param name="format" select="'M x, Y'"/>
</xsl:call-template>
| <xsl:for-each select="tags/tag">
<a href="{$url}/tag/{.}">
diff --git a/source/99_result/tag/tag.xsl b/source/99_result/tag/tag.xsl
index 0ed3007..1bae16c 100644
--- a/source/99_result/tag/tag.xsl
+++ b/source/99_result/tag/tag.xsl
@@ -15,7 +15,6 @@
/>
<xsl:include href="[utility/master.xsl]"/>
-<xsl:include href="[utility/date-time.xsl]"/>
<xsl:variable name="meta">
<datasource type="main" mode="iterate" source="target/03_meta/tags.xml" target="tag"/>
@@ -38,11 +37,7 @@
<xsl:template match="tag/entry/article">
<li>
- <xsl:call-template name="format-date">
- <xsl:with-param name="date" select="date"/>
- <xsl:with-param name="format" select="'x. M Y'"/>
- </xsl:call-template>
- » <a href="{$url}/article/{@handle}"><xsl:value-of select="title"/></a>
+ <xsl:value-of select="date"/> » <a href="{$url}/article/{@handle}"><xsl:value-of select="title"/></a>
</li>
</xsl:template>