mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-29 00:55:32 +00:00
14 lines
331 B
XML
14 lines
331 B
XML
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="html" indent="yes" />
|
|
<xsl:template match="title">
|
|
<em>
|
|
<xsl:apply-templates />
|
|
</em>
|
|
</xsl:template>
|
|
<xsl:template match="year">
|
|
<span class="">
|
|
<xsl:apply-templates />
|
|
</span>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|