[xsl] mode question

Subject: [xsl] mode question
From: Roelof Wobben <rwobben@xxxxxxxxxxx>
Date: Fri, 9 Dec 2011 10:38:19 +0000
hello,



I want to use the mode tag in xslt but now I get a error message that name or
match is missing.



How do I repair it the best.



<xsl:template match="/">
     <xsl:apply-templates mode="head"/>
      <xsl:apply-templates mode="content"/>
      <xsl:apply-templates mode="bottom" />
  </xsl:template>

  <xsl:template mode="head">
    <head>
        <title>
             <xsl:value-of select="$website-name"/> - <xsl:value-of
select="$page-title"/>
         </title>
        <link rel="stylesheet" type="text/css"
href="{$workspace}/assets/css/style.css"/>
        <link rel="alternate" type="application/rss+xml" title="Notepad Chaos
RSS Feed" href="http://www.notepadchaos.com/feed/"; />
        <link rel="pingback" href="http://www.notepadchaos.com/xmlrpc.php"; />
        <link rel="alternate" type="application/rss+xml" title="Notepad Chaos
Feed" href="http://www.notepadchaos.com/feed/"; />
        <link rel="alternate" type="application/rss+xml" title="Notepad Chaos
Comments Feed" href="http://www.notepadchaos.com/comments/feed/"; />
         <link rel="EditURI" type="application/rsd+xml" title="RSD"
href="http://www.notepadchaos.com/xmlrpc.php?rsd"; />
         <link rel="wlwmanifest" type="application/wlwmanifest+xml"
href="http://www.notepadchaos.com/wp-includes/wlwmanifest.xml"/>
          <link rel='index' title='Notepad Chaos'
href='http://www.notepadchaos.com/' />
    </head>
  </xsl:template>





Roelof

Current Thread