diff options
Replaced function-like data resolution with template applications
* e.g. article and tag support data is now fetched through direct _XPath_ template applications
** this required the introduction of a special `resolve` mode to prevent interaction between support and main content resolution
** in most cases arguments had to be wrapped inside helper constants to enable selection of e.g. article support data via the `@handle` attribute using the current elements `@handle` attribute
* analogously to the recent changes in _StaticXSLT_ this commit aims to improve the XSLT code style used in generating this static website
Diffstat (limited to 'source/99_result/article')
-rw-r--r-- | source/99_result/article/article.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/99_result/article/article.xsl b/source/99_result/article/article.xsl index 37e2fda..d34df77 100644 --- a/source/99_result/article/article.xsl +++ b/source/99_result/article/article.xsl @@ -31,7 +31,7 @@ <xsl:call-template name="format-date"> <xsl:with-param name="date" select="date/full"/> <xsl:with-param name="format" select="'M x, Y'"/> - </xsl:call-template> + </xsl:call-template> <xsl:text> | </xsl:text> <xsl:for-each select="tags/tag"> <a href="/tag/{.}"> |