summaryrefslogtreecommitdiff
path: root/templates/www.sub.fi/videopage.xsl
blob: 11cd0ef69a47fd3cd850b613bc01b0b530e22ee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>