fix: feed value references
This commit is contained in:
parent
668627e1da
commit
5d919efcdd
3 changed files with 5 additions and 5 deletions
|
@ -9,10 +9,10 @@ permalink: /links.xml
|
|||
{% block entries %}
|
||||
{% for link in links %}
|
||||
<entry>
|
||||
<title>{{ link.description | escape }}</title>
|
||||
<link href="{{link.href}}" />
|
||||
<title>{{ link.title | escape }}</title>
|
||||
<link href="{{link.link}}" />
|
||||
<updated>{{ link.time | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ link.href }}</id>
|
||||
<id>{{ link.link }}</id>
|
||||
<content type="html"></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
|
|
Reference in a new issue