chore: fix feeds

This commit is contained in:
Cory Dransfeldt 2023-09-20 09:11:58 -07:00
parent 4e3eefc5b8
commit 29c6a2df7d
No known key found for this signature in database
4 changed files with 11 additions and 10 deletions

View file

@ -15,11 +15,11 @@
</image>
{% for entry in entries limit: 20 -%}
<item>
<title>{{ entry.title | escape }}</title>
<title>{{ entry.title }}</title>
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
<pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate>
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
<description>{{ entry.excerpt | markdown | escape }}</description>
<description>{{ entry.excerpt }}</description>
</item>
{%- endfor %}
</channel>