blob: 7d0832eb6c768f77bacdd7af5c694590d0462a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="https://beratung-franzke.de/web-tpl">
<xsl:template match="s:a" mode="html">
<a>
<xsl:copy-of select="@*" />
<xsl:attribute name="href">
<xsl:value-of select="concat(@href, $suffix)" />
</xsl:attribute>
<xsl:apply-templates mode="html"/>
</a>
</xsl:template>
</xsl:stylesheet>
|