mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
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:
parent
a4ffe95c9e
commit
ffbc375f68
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user