Docs: Add link tag to item in RSS template (#7291)
Merge pull request 7291
This commit is contained in:
parent
d667f12941
commit
517eb749a0
|
|
@ -418,6 +418,9 @@ layout: null
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ post.title }}</title>
|
<title>{{ post.title }}</title>
|
||||||
|
<link>
|
||||||
|
{{ post.url | prepend: site.url }}
|
||||||
|
</link>
|
||||||
<description>
|
<description>
|
||||||
{{ post.content | escape | truncate: '400' }}
|
{{ post.content | escape | truncate: '400' }}
|
||||||
</description>
|
</description>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue