31 lines
957 B
XML
31 lines
957 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:import href="../../tools/xsltsl/tagging.xsl" />
|
|
|
|
<xsl:import href="../../fsfe.xsl" />
|
|
<xsl:output method="html" encoding="utf-8" indent="yes" doctype-system="about:legacy-compat" />
|
|
|
|
|
|
<xsl:template match="fetch-news">
|
|
<xsl:call-template name="fetch-news">
|
|
<xsl:with-param name="tag" select="'procurement'"/>
|
|
<xsl:with-param name="nb-items" select="15"/>
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<!-- How to show a link -->
|
|
<xsl:template match="/buildinfo/document/set/news/link">
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href">
|
|
<xsl:value-of select="text()" />
|
|
</xsl:attribute>
|
|
<xsl:text>[</xsl:text>
|
|
<xsl:value-of select="/buildinfo/document/text[@id='more']" />
|
|
<xsl:text>]</xsl:text>
|
|
</xsl:element>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|