fix: feed data
This commit is contained in:
parent
9c84159c79
commit
ea01261952
4 changed files with 13 additions and 13 deletions
|
@ -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 %}
|
||||
|
|
Reference in a new issue