summaryrefslogtreecommitdiff
path: root/xslt/guyancourt.xslt
blob: 235879bef691c3015956f42dd829a263a5403381 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/> 
    <xsl:template match="/">
    <items>
        <xsl:for-each select="/rss/channel/*/item">
        <item>
            <name>Ville de Guyancourt : <xsl:value-of select="title"/></name>
            <link><xsl:value-of select="link"/></link>
            <description><xsl:value-of select="description"/></description>
            <key>guyancourt-<xsl:value-of select="guid"/></key>
        </item>
        </xsl:for-each>
    </items>
    </xsl:template>
</xsl:stylesheet>