diff options
Diffstat (limited to 'templates/www.sub.fi/videopage.xsl')
-rw-r--r-- | templates/www.sub.fi/videopage.xsl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/www.sub.fi/videopage.xsl b/templates/www.sub.fi/videopage.xsl new file mode 100644 index 0000000..11cd0ef --- /dev/null +++ b/templates/www.sub.fi/videopage.xsl @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + +<xsl:import href="video.xsl"/> + +<xsl:param name="docurl"/> + +<xsl:template match="/"> + <xsl:call-template name="mediaurl"> + <xsl:with-param name="title" select="/html/head/title"/> + <xsl:with-param name="pid" select="substring-after($docurl, '?')"/> + </xsl:call-template> +</xsl:template> + +</xsl:stylesheet> |