Revert "chore: fix feeds"

This reverts commit 29c6a2df7d.
This commit is contained in:
Cory Dransfeldt 2023-09-20 09:32:18 -07:00
parent 39ecabb8f7
commit 5e24c70091
No known key found for this signature in database
4 changed files with 10 additions and 11 deletions

View file

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