autotopia: event-list: Copy title nodes, not values

This commit is contained in:
Peter Urban 2019-04-21 00:45:16 +02:00
parent 04a9218457
commit a27ad1dee4
2 changed files with 1 additions and 3 deletions

View File

@ -56,8 +56,6 @@ title {
max-width:90em; max-width:90em;
border-left-style:solid; border-left-style:solid;
line-height: 150%; line-height: 150%;
}
.a-main p,ul{
font-size: larger; font-size: larger;
} }

View File

@ -237,7 +237,7 @@
<a href="{$baseurl}{str:replace(str:replace($file, 'content/autotopia/', ''), '.xml', '.html')}"> <a href="{$baseurl}{str:replace(str:replace($file, 'content/autotopia/', ''), '.xml', '.html')}">
<xsl:for-each select="title"> <xsl:for-each select="title">
<span lang="{@lang}" class="event-title"> <span lang="{@lang}" class="event-title">
<xsl:value-of select="."/> <xsl:copy-of select="./node()"/>
</span> </span>
</xsl:for-each> </xsl:for-each>
</a> </a>