diff options
Added meta datasource
* merges the content of the "00_content/meta.xml" file with additional data such as the available tags
* simplifies providing a basic datasource to every result transformation
* modified master, article and tag page template accordingly
Diffstat (limited to 'utility')
-rw-r--r-- | utility/master.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utility/master.xsl b/utility/master.xsl index da4343b..ec7366c 100644 --- a/utility/master.xsl +++ b/utility/master.xsl @@ -20,7 +20,7 @@ <xsl:template name="list_tags"> <ul> - <xsl:for-each select="datasource/tags/entry"> + <xsl:for-each select="datasource/meta/tags/entry"> <li> <a href="{$url}/tag/{@handle}"> <xsl:value-of select="@handle"/> |