blob: 3d80d814ab5fa77d5bce66c5d215b052e9309fbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:s="https://beratung-franzke.de/web-tpl">
<xsl:output method="text" encoding="UTF-8" />
<xsl:strip-space elements="*"/>
<xsl:template match="s:page">
<xsl:value-of select="@filename"/>
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates match="//s:page"/>
</xsl:template>
</xsl:stylesheet>
|