atom.fr.xsl.in (1991B)
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns="http://www.w3.org/1999/xhtml"
- xmlns:xhtml="http://www.w3.org/1999/xhtml"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:atom="http://www.w3.org/2005/Atom"
- xml:space="preserve"
- >
- <xsl:import href="templates/fr/nav.xsl" />
- <xsl:output method="xml" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>
- <xsl:template match="/"><xsl:text disable-output-escaping='yes'><!DOCTYPE html></xsl:text>
- <html xml:lang="fr" lang="fr">
- <head>
- <xi:include href="templates/head.xml" parse="xml" xpointer="xpointer(/xml/*)"/>
- <title><xsl:value-of select="/atom:feed/atom:title" /></title>
- </head>
- <body>
- <xsl:call-template name="nav">
- <xsl:with-param name="feedURL" select="/atom:feed/atom:link[@rel='self']/@href"/>
- </xsl:call-template>
- <main>
- <h1><xsl:value-of select="/atom:feed/atom:title" /></h1>
- <p>Ceci est un flux atom, vous pouvez régulièrement tirer des mises à jours avec un <a href="https://fr.wikipedia.org/wiki/Agr%C3%A9gateur">lecteur de flux</a> et <a href="{/atom:feed/atom:link[@rel='self']/@href}">l'URL de ce flux</a>. Inclus ci-dessous les entrées présentes, sans leur contenu par simplification.</p>
- <xsl:apply-templates select="/atom:feed/atom:entry"/>
- </main>
- <xi:include href="templates/en/footer.shtml" parse="xml"/>
- </body>
- </html></xsl:template>
- <xsl:template match="atom:entry">
- <a href="{atom:id}"><h2><xsl:value-of select="atom:title"/></h2></a>
- <p class="timestamps"><xsl:apply-templates select="atom:published"/><xsl:apply-templates select="atom:updated"/></p>
- <xsl:if test="atom:content[@type='text']"><p><xsl:value-of select="atom:content"/></p></xsl:if>
- </xsl:template>
- <xsl:template match="atom:published">publié le <xsl:value-of select="."/></xsl:template>
- <xsl:template match="atom:updated">, dernière mise-à-jour le <xsl:value-of select="."/></xsl:template>
- </xsl:stylesheet>