Make feed entries show full content (#1577)

Feed is configured to show introduction text rather than the full content of each post. Now it will always show the full content for each entry.
This commit is contained in:
maiki 2018-01-06 14:27:53 -08:00 committed by Jeremy Thomas
parent a4ffe95c9e
commit ffbc375f68

View File

@ -19,11 +19,7 @@
{% if post.author.name %}
<dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
{% endif %}
{% if post.introduction %}
<description>{{ post.introduction | xml_escape }}</description>
{% else %}
<description>{{ post.content | xml_escape }}</description>
{% endif %}
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>