fix: feed data

This commit is contained in:
Cory Dransfeldt 2023-05-05 16:28:07 -07:00
parent 9c84159c79
commit ea01261952
No known key found for this signature in database
4 changed files with 13 additions and 13 deletions

View file

@ -9,14 +9,14 @@ permalink: /links.xml
{{ articles | rssLastUpdatedDate }}{% endblock %}
{% block entries %}
{% assign links = articles | reverse %}
{% for article in articles %}
{% for link in links %}
<entry>
<title>{{ article.content.title | escape }}</title>
<link href="{{article.content.url}}" />
<updated>{{ article.publication_date | date: "%m.%d.%Y" }}</updated>
<id>{{ article.content.id }}</id>
<title>{{ link.content.title | escape }}</title>
<link href="{{link.content.url}}" />
<updated>{{ link.publication_date | date: "%m.%d.%Y" }}</updated>
<id>{{ link.content.link }}</id>
<content type="html">
{{ article.excerpt | escape }}
{{ link.excerpt | escape }}
</content>
</entry>
{% endfor %}