comparison xslt/news.xslt @ 2875:c704a743f269

Removed google analytics.
author Sergey Budnevitch <sb@waeme.net>
date Fri, 05 Aug 2022 12:19:48 +0400
parents fdf1464e1977
children 91a2ee74ca72
comparison
equal deleted inserted replaced
2874:60851da88db6 2875:c704a743f269
27 <xsl:include href="link.xslt"/> 27 <xsl:include href="link.xslt"/>
28 <xsl:include href="style.xslt"/> 28 <xsl:include href="style.xslt"/>
29 <xsl:include href="body.xslt"/> 29 <xsl:include href="body.xslt"/>
30 <xsl:include href="menu.xslt"/> 30 <xsl:include href="menu.xslt"/>
31 <xsl:include href="banner.xslt"/> 31 <xsl:include href="banner.xslt"/>
32 <xsl:include href="ga.xslt"/>
33 <xsl:include href="content.xslt"/> 32 <xsl:include href="content.xslt"/>
34 33
35 34
36 <xsl:template match="/news"> 35 <xsl:template match="/news">
37 <html><head> 36 <html><head>
38 37
39 <link rel="alternate" type="application/rss+xml" title="{@name}" href="{$SITE}/index.rss"/> 38 <link rel="alternate" type="application/rss+xml" title="{@name}" href="{$SITE}/index.rss"/>
40 39
41 <title> <xsl:value-of select="@name"/> <xsl:if test="$YEAR"> <xsl:text>: </xsl:text> <xsl:value-of select="$YEAR"/> </xsl:if> </title> 40 <title> <xsl:value-of select="@name"/> <xsl:if test="$YEAR"> <xsl:text>: </xsl:text> <xsl:value-of select="$YEAR"/> </xsl:if> </title>
42 41
43 <xsl:call-template name="style"><xsl:with-param select="@lang" name="lang"/></xsl:call-template><xsl:call-template name="banner"/><xsl:call-template name="ga"/></head> 42 <xsl:call-template name="style"><xsl:with-param select="@lang" name="lang"/></xsl:call-template><xsl:call-template name="banner"/></head>
44 43
45 <xsl:call-template name="body"><xsl:with-param select="@lang" name="lang"/></xsl:call-template></html> 44 <xsl:call-template name="body"><xsl:with-param select="@lang" name="lang"/></xsl:call-template></html>
46 </xsl:template> 45 </xsl:template>
47 46
48 47