fix: additional date fixes

This commit is contained in:
Cory Dransfeldt 2023-05-05 16:51:02 -07:00
parent ea01261952
commit 7f9dcbe44d
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@ xmlns:atom="http://www.w3.org/2005/Atom">
<xsl:value-of select="atom:link/@href"/> <xsl:value-of select="atom:link/@href"/>
</xsl:attribute> </xsl:attribute>
<xsl:value-of select="atom:title"/> <xsl:value-of select="atom:title"/>
</a> </a><xsl:value-of select="atom:updated" />
</li> </li>
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>

View file

@ -13,7 +13,7 @@ permalink: /links.xml
<entry> <entry>
<title>{{ link.content.title | escape }}</title> <title>{{ link.content.title | escape }}</title>
<link href="{{link.content.url}}" /> <link href="{{link.content.url}}" />
<updated>{{ link.publication_date | date: "%m.%d.%Y" }}</updated> <updated>{{ link.content.library.last_favorited_date | date: "%m.%d.%Y" }}</updated>
<id>{{ link.content.link }}</id> <id>{{ link.content.link }}</id>
<content type="html"> <content type="html">
{{ link.excerpt | escape }} {{ link.excerpt | escape }}