feat: improve feeds

This commit is contained in:
Cory Dransfeldt 2024-11-15 16:53:25 -08:00
parent a71e910482
commit 1d185fe7cd
No known key found for this signature in database
7 changed files with 62 additions and 46 deletions

View file

@ -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}" />