diff options
Implemented tag overview page generation
* added "tags.xsl" meta datasource
** augments tags and their articles extracted from the content tree with article data from the article datasource
* added basic tag page template
* renamed "pages" directory to "page" as it is more intuitive from a user perspective
Diffstat (limited to 'source/99_result/pages')
-rw-r--r-- | source/99_result/pages/page.xsl | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/source/99_result/pages/page.xsl b/source/99_result/pages/page.xsl deleted file mode 100644 index 8fced90..0000000 --- a/source/99_result/pages/page.xsl +++ /dev/null @@ -1,36 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<xsl:stylesheet - version="1.0" - xmlns:xsl="http://www.w3.org/1999/XSL/Transform" - xmlns:xalan="http://xml.apache.org/xalan" - xmlns:InputXSLT="function.inputxslt.application" - exclude-result-prefixes="xalan InputXSLT" -> - -<xsl:output - method="xml" - omit-xml-declaration="no" - encoding="UTF-8" - indent="yes" -/> - -<xsl:include href="[utility/master.xsl]"/> - -<xsl:variable name="meta"> - <datasource type="main" mode="iterate" source="target/02_data/pages.xml" target="page"/> - <datasource type="support" mode="full" source="source/00_content/meta.xml" target="meta"/> - <target mode="xpath" value="xalan:nodeset($datasource)/datasource/page/entry/@handle"/> -</xsl:variable> - -<xsl:template name="title-text"> - <xsl:value-of select="/datasource/page/entry/title"/> -</xsl:template> - -<xsl:template match="page/entry"> - <div class="last article"> - <h3><xsl:value-of select="./title"/></h3> - <xsl:copy-of select="./content/*"/> - </div> -</xsl:template> - -</xsl:stylesheet> |