feat: improve feeds
This commit is contained in:
parent
a71e910482
commit
1d185fe7cd
7 changed files with 62 additions and 46 deletions
|
@ -45,14 +45,14 @@
|
|||
<xsl:for-each select="/rss/channel/item">
|
||||
<div class="item">
|
||||
<time>Published: <xsl:value-of select="pubDate" /></time>
|
||||
<h3>
|
||||
<h2>
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="link" />
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="title" />
|
||||
</a>
|
||||
</h3>
|
||||
</h2>
|
||||
<xsl:value-of select="description" disable-output-escaping="yes" />
|
||||
<xsl:if test="enclosure">
|
||||
<img class="image-banner" src="{enclosure/@url}" alt="{title}" />
|
||||
|
|
Reference in a new issue