mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 02:04:29 -07: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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user